From b077df7d25be7274435a326850582b3581764dae Mon Sep 17 00:00:00 2001 From: Siana Gearz Date: Thu, 7 Oct 2010 02:38:46 +0200 Subject: [PATCH] Fixed syntax error in launcher for Linux users. --- indra/newview/linux_tools/wrapper.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/indra/newview/linux_tools/wrapper.sh b/indra/newview/linux_tools/wrapper.sh index 1d3a77057..d87d2ed5a 100755 --- a/indra/newview/linux_tools/wrapper.sh +++ b/indra/newview/linux_tools/wrapper.sh @@ -65,7 +65,7 @@ fi ## I keep crashing without having GDB running, always run it if an ## environment variable is set. -if [ $ASCENDED_DEVELOPER -eq 1 ]; then +if [ -n "$ASCENDED_DEVELOPER" ]; then # export LL_WRAPPER='cgdb --args' export LL_WRAPPER='gdb --args' # export LL_WRAPPER='valgrind --smc-check=all --error-limit=no --log-file=secondlife.vg --leak-check=full --suppressions=/usr/lib/valgrind/glibc-2.5.supp --suppressions=secondlife-i686.supp'