From 0d8347221324a1ae2d198409e335f299766c2701 Mon Sep 17 00:00:00 2001 From: Jean-Sebastien Gelinas Date: Sat, 11 Jul 2009 16:54:03 -0400 Subject: [PATCH] parser: use printf instead of echo -n Signed-off-by: Jean-Sebastien Gelinas Signed-off-by: Jean Privat --- src/parser/prescc.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parser/prescc.sh b/src/parser/prescc.sh index d82fe6f..01f8d6e 100755 --- a/src/parser/prescc.sh +++ b/src/parser/prescc.sh @@ -59,7 +59,7 @@ infile=$1 outfile=$2 tmpfile=`mktemp "$2.XXXXXX"` -echo -n "/* This file is autogenerated, do not modify it */" > "$outfile" +printf "/* This file is autogenerated, do not modify it */" > "$outfile" cat "$infile" >> "$outfile" # The perl code is used to list all the available parameters in the extended grammar -- 1.7.9.5