diff options
author | Armin Weatherwax | 2010-08-25 16:32:09 +0200 |
---|---|---|
committer | McCabe Maxsted | 2010-08-28 05:01:45 -0700 |
commit | db610bd60ed2c099cc3f1e3c9cf1bed1b7c69dfe (patch) | |
tree | de90c8aaa8f1d8e01720d665116e6f03fe8aad4c /linden/indra/newview/linux_tools/getvoice.sh | |
parent | Reapply 575931: Disable avatar appearance facelight when local lighting turne... (diff) | |
download | meta-impy-db610bd60ed2c099cc3f1e3c9cf1bed1b7c69dfe.zip meta-impy-db610bd60ed2c099cc3f1e3c9cf1bed1b7c69dfe.tar.gz meta-impy-db610bd60ed2c099cc3f1e3c9cf1bed1b7c69dfe.tar.bz2 meta-impy-db610bd60ed2c099cc3f1e3c9cf1bed1b7c69dfe.tar.xz |
fix missing quotes in linux scripts
Diffstat (limited to '')
-rwxr-xr-x | linden/indra/newview/linux_tools/getvoice.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/newview/linux_tools/getvoice.sh b/linden/indra/newview/linux_tools/getvoice.sh index f119e82..13b632f 100755 --- a/linden/indra/newview/linux_tools/getvoice.sh +++ b/linden/indra/newview/linux_tools/getvoice.sh | |||
@@ -4,7 +4,7 @@ SCRIPTSRC=`readlink -f "$0" || echo "$0"` | |||
4 | RUN_PATH=`dirname "${SCRIPTSRC}" || echo .` | 4 | RUN_PATH=`dirname "${SCRIPTSRC}" || echo .` |
5 | 5 | ||
6 | #if mozilla-runtime-linux-x86_64 is present we are using 64bit Imprudence on 64bit Linux | 6 | #if mozilla-runtime-linux-x86_64 is present we are using 64bit Imprudence on 64bit Linux |
7 | if [ -d ${RUN_PATH}/app_settings/mozilla-runtime-linux-x86_64/ ]; then | 7 | if [ -d "${RUN_PATH}/app_settings/mozilla-runtime-linux-x86_64/" ]; then |
8 | LIB_INSTALLDIR="lib32/" # It's 32bit voice on 64bit Linux and 64bit viewer. Not using lib/ for avoiding ambiguity. | 8 | LIB_INSTALLDIR="lib32/" # It's 32bit voice on 64bit Linux and 64bit viewer. Not using lib/ for avoiding ambiguity. |
9 | else | 9 | else |
10 | LIB_INSTALLDIR="lib/" # It's 32bit voice on 32 or 64bit Linux and 32bit viewer. | 10 | LIB_INSTALLDIR="lib/" # It's 32bit voice on 32 or 64bit Linux and 32bit viewer. |