From 720a7eed77a010e93b9a979668ccf3caaecfe9ae Mon Sep 17 00:00:00 2001 From: Tiefseetauchner <48085877+Tiefseetauchner@users.noreply.github.com> Date: Wed, 21 Apr 2021 20:37:06 +0200 Subject: [PATCH] Update compile.sh cd in line 4 would not work if path has blank as it would have two arguments ./compile.sh: line 4: cd: too many arguments --- tools/x-win/compile.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/x-win/compile.sh b/tools/x-win/compile.sh index 00fe2737e2..57baaefefc 100755 --- a/tools/x-win/compile.sh +++ b/tools/x-win/compile.sh @@ -2,7 +2,7 @@ # we assuem this script is /tools/x-win/compile.sh pushd "`/usr/bin/dirname \"$0\"`" > /dev/null; this_script_dir="`pwd`"; popd > /dev/null -cd $this_script_dir/../.. +cd "$this_script_dir/../.." test -f gtk2_ardour/wscript || exit 1 : ${XARCH=i686} # or x86_64