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 824126c45..70705e5f3 100644
--- a/community/golangide/golangide.sh
+++ b/community/golangide/golangide.sh
@@ -1,6 +1,7 @@
#!/bin/sh
+# The libqjson issue has been reported upstream
if [ ! -z $GOROOT -a -e $GOROOT ]; then
- /usr/bin/liteide $@
+ LD_PRELOAD=/usr/lib/libqjson.so /usr/bin/liteidex $@
else
- GOROOT=/usr/lib/go /usr/bin/liteide $@
+ GOROOT=/usr/lib/go LD_PRELOAD=/usr/lib/libqjson.so /usr/bin/liteidex $@
fi