aboutsummaryrefslogtreecommitdiff
path: root/contrib/check_GNU_style.sh
diff options
context:
space:
mode:
authorvries <vries@138bc75d-0d04-0410-961f-82ee72b054a4>2015-07-15 15:41:21 +0000
committervries <vries@138bc75d-0d04-0410-961f-82ee72b054a4>2015-07-15 15:41:21 +0000
commit816d218b70d367fbe15c530a752cd7f28a5df080 (patch)
treeefb81d7c02233d8bbda73ba494a9a2e307697c18 /contrib/check_GNU_style.sh
parentb0e2a5e8ae65649cb2f30d97d2df403161b58973 (diff)
check_GNU_style.sh: Fix quoting in cat_with_prefix
2015-07-15 Tom de Vries <tom@codesourcery.com> * check_GNU_style.sh (cat_with_prefix): Fix quoting. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@225837 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'contrib/check_GNU_style.sh')
-rwxr-xr-xcontrib/check_GNU_style.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/check_GNU_style.sh b/contrib/check_GNU_style.sh
index 033a2c91b60..ac54ed070e7 100755
--- a/contrib/check_GNU_style.sh
+++ b/contrib/check_GNU_style.sh
@@ -89,7 +89,7 @@ cat_with_prefix ()
if [ "$prefix" = "" ]; then
cat "$f"
else
- awk "{printf "%s%s\n", $prefix, \$0}" $f
+ awk "{printf \"%s%s\n\", \"$prefix\", \$0}" $f
fi
}