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, 2 insertions, 3 deletions
diff --git a/community/golangide/golangide.sh b/community/golangide/golangide.sh
index 736727ed7..d7d0772b5 100644
--- a/community/golangide/golangide.sh
+++ b/community/golangide/golangide.sh
@@ -1,8 +1,7 @@
#!/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 $ELF $@
+ $ELF $@
else
- GOROOT=/usr/lib/go LD_PRELOAD=/usr/lib/libqjson.so $ELF $@
+ GOROOT=/usr/lib/go $ELF $@
fi