diff options
author | Willem Jan Palenstijn | 2012-09-11 10:48:10 +0200 |
---|---|---|
committer | Willem Jan Palenstijn | 2012-09-11 10:50:59 +0200 |
commit | 7c23394b3739c4350112f558a67ca61754a0ff24 (patch) | |
tree | 5de50859b6e286bc8bc332d6872f521c226770d6 | |
parent | 000feae4cfc06cdeec1033672e0f247ad6428973 (diff) | |
download | scummvm-rg350-7c23394b3739c4350112f558a67ca61754a0ff24.tar.gz scummvm-rg350-7c23394b3739c4350112f558a67ca61754a0ff24.tar.bz2 scummvm-rg350-7c23394b3739c4350112f558a67ca61754a0ff24.zip |
CONFIGURE: Prevent [] in subengine list from triggering globbing
-rwxr-xr-x | configure | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -692,7 +692,7 @@ get_engine_build_string() { engine_string="`get_engine_name $1` $engine_string" fi - echo $engine_string + echo "$engine_string" } # Get the string about building subengines @@ -729,7 +729,7 @@ get_subengines_build_string() { fi fi - echo $subengine_string + echo "$subengine_string" } # Engine specific build strings |