Commit 7392b090 by Tom de Vries Committed by Tom de Vries

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.

From-SVN: r225837
parent 6b8068d6
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.
......
......@@ -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
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment