From e9eb5b31ad3b288fbc36ec9421c473fde0c59f38 Mon Sep 17 00:00:00 2001 From: Dominik Riebeling Date: Fri, 2 Sep 2011 21:28:25 +0000 Subject: Quote command arguments to avoid the shell trying to expand them. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@30412 a1c6a512-1295-4272-9138-f99709370657 --- tools/configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/configure b/tools/configure index 3c4145f..57d747b 100755 --- a/tools/configure +++ b/tools/configure @@ -655,7 +655,7 @@ androidcc () { echo "environment variable point to the root directory of the Android NDK." exit fi - buildhost=`uname | tr [:upper:] [:lower:]` + buildhost=$(uname | tr "[:upper:]" "[:lower:]") gccchoice="4.4.3" gcctarget="arm-linux-androideabi-" gccprefix=$ANDROID_NDK_PATH/toolchains/$gcctarget$gccchoice/prebuilt/$buildhost-x86 -- cgit v1.1