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
+2015-07-15 Tom de Vries <tom@codesourcery.com>
+
+ * check_GNU_style.sh (cat_with_prefix): Fix quoting.
+
2015-06-02 Steve Ellcey <sellcey@imgtec.com>
* test_installed (--target=): New option.
if [ "$prefix" = "" ]; then
cat "$f"
else
- awk "{printf "%s%s\n", $prefix, \$0}" $f
+ awk "{printf \"%s%s\n\", \"$prefix\", \$0}" $f
fi
}