diff options
author | Simon Hausmann <simon.hausmann@nokia.com> | 2010-01-08 11:22:14 +0100 |
---|---|---|
committer | Simon Hausmann <simon.hausmann@nokia.com> | 2010-01-08 13:36:43 +0100 |
commit | 583b3f55ad12846a25598cb0b9442294cabafd96 (patch) | |
tree | c6247568431f5a8f9fc12fe145921bc9851398e4 /configure | |
parent | c26e95adb9777e642c15930ec6fb49251451b443 (diff) | |
download | qt4-tools-583b3f55ad12846a25598cb0b9442294cabafd96.tar.gz |
Fix passing of arguments to syncqt
Escape the arguments variable properly.
Reviewed-by: Thiago
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2257,7 +2257,7 @@ if [ "$OPT_SHADOW" = "yes" ]; then mkdir -p "$outpath/bin" echo "#!/bin/sh" >"$outpath/bin/syncqt" echo "QTDIR=\"$relpath\"; export QTDIR" >>"$outpath/bin/syncqt" - echo "perl \"$relpath/bin/syncqt\" -outdir \"$outpath\" $*" >>"$outpath/bin/syncqt" + echo "perl \"$relpath/bin/syncqt\" -outdir \"$outpath\" \"\$@\"" >>"$outpath/bin/syncqt" chmod 755 "$outpath/bin/syncqt" fi |