diff options
author | mat <mat@FreeBSD.org> | 2016-10-25 19:44:19 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2016-10-25 19:44:19 +0800 |
commit | 6f8d494bded90fa60f8f11bdaeaa93e9291195cf (patch) | |
tree | c0378e01bc7f885be6e2dfe3a32053b8ed274ad2 /Mk/Scripts | |
parent | b2981c5cb45eb6d7a7b73f7f4f73cd6e22317e12 (diff) | |
download | freebsd-ports-gnome-6f8d494bded90fa60f8f11bdaeaa93e9291195cf.tar.gz freebsd-ports-gnome-6f8d494bded90fa60f8f11bdaeaa93e9291195cf.tar.zst freebsd-ports-gnome-6f8d494bded90fa60f8f11bdaeaa93e9291195cf.zip |
Do not force a lookup in LOCALBASE/lib for shared libraries.
ldd should work correctly if rpath is set, and this adds false
positives.
PR: 213547
Submitted by: John Hein
Sponsored by: Absolight
Diffstat (limited to 'Mk/Scripts')
-rw-r--r-- | Mk/Scripts/qa.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/Scripts/qa.sh b/Mk/Scripts/qa.sh index 9680c0ca6dfc..7d8cb3f2e710 100644 --- a/Mk/Scripts/qa.sh +++ b/Mk/Scripts/qa.sh @@ -658,7 +658,7 @@ proxydeps() { fi already="${already} ${dep_file}" done <<-EOT - $(LD_LIBRARY_PATH=${LOCALBASE}/lib ldd -a "${STAGEDIR}${file}" | \ + $(ldd -a "${STAGEDIR}${file}" | \ awk '\ BEGIN {section=0}\ /^\// {section++}\ |