summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJuergen Daubert <jue@jue.li>2012-04-28 14:42:07 +0200
committerJuergen Daubert <jue@jue.li>2012-04-28 14:42:07 +0200
commit61a704cd6728784b9bca4313980d581ca0654509 (patch)
tree3159553fffc51d1b5b733930c25d4da6d3466dcb
parentfc2edbb9fcf96ed5bbaa5c1f297818e4be5e31a8 (diff)
downloadprt-utils-61a704cd6728784b9bca4313980d581ca0654509.tar.gz
prt-utils-61a704cd6728784b9bca4313980d581ca0654509.tar.xz
finddeps: prepend /lib to LD_LIBRARY_PATH
The default directory order for the runtime linker is /lib and /usr/lib. We should honor that as well.
-rwxr-xr-xfinddeps4
1 files changed, 2 insertions, 2 deletions
diff --git a/finddeps b/finddeps
index 7d75688..e79a2ea 100755
--- a/finddeps
+++ b/finddeps
@@ -5,10 +5,10 @@
# Johannes Winkelmann <jw at tks6 dot net>
# awk stuff by Juergen Daubert <jue at jue dot li>
-version=1.8
+version=1.9
pkgdb="/var/lib/pkg/db"
-export LD_LIBRARY_PATH=/usr/lib:/usr/X11/lib:$LD_LIBRARY_PATH
+export LD_LIBRARY_PATH=/lib:/usr/lib:/usr/X11/lib:$LD_LIBRARY_PATH
function printDep() {
deps=()

Generated by cgit