summaryrefslogtreecommitdiff
path: root/community/golangide/golangide.sh
diff options
context:
space:
mode:
Diffstat (limited to 'community/golangide/golangide.sh')
-rw-r--r--community/golangide/golangide.sh5
1 files changed, 3 insertions, 2 deletions
diff --git a/community/golangide/golangide.sh b/community/golangide/golangide.sh
index 70705e5f3..736727ed7 100644
--- a/community/golangide/golangide.sh
+++ b/community/golangide/golangide.sh
@@ -1,7 +1,8 @@
#!/bin/sh
+ELF=/usr/bin/liteide
# The libqjson issue has been reported upstream
if [ ! -z $GOROOT -a -e $GOROOT ]; then
- LD_PRELOAD=/usr/lib/libqjson.so /usr/bin/liteidex $@
+ LD_PRELOAD=/usr/lib/libqjson.so $ELF $@
else
- GOROOT=/usr/lib/go LD_PRELOAD=/usr/lib/libqjson.so /usr/bin/liteidex $@
+ GOROOT=/usr/lib/go LD_PRELOAD=/usr/lib/libqjson.so $ELF $@
fi