summaryrefslogtreecommitdiff
path: root/community/golangide/golangide.sh
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2013-05-12 11:23:20 +0200
committerMichał Masłowski <mtjm@mtjm.eu>2013-05-12 11:23:20 +0200
commitea84a7ef4c3c637a7504361c6ac42e8ba93a6179 (patch)
tree0bee5e198a06cfeff7de0396c4739ae2569f7067 /community/golangide/golangide.sh
parente55fda657497bd8743c0a57d917316afe70950f8 (diff)
parent5b9e0d821dd428792bd51ed03af2b800924ce69d (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/start-stop-daemon/PKGBUILD extra/claws-mail-extra-plugins/PKGBUILD extra/giflib/PKGBUILD extra/gvfs/PKGBUILD extra/latex2rtf/PKGBUILD extra/libgpod/PKGBUILD extra/libimobiledevice/PKGBUILD extra/libvpx/PKGBUILD extra/libwpg/PKGBUILD extra/libxml2/PKGBUILD extra/pixman/PKGBUILD extra/thunar-archive-plugin/PKGBUILD
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