diff options
author | mat <mat@FreeBSD.org> | 2017-12-15 23:56:09 +0800 |
---|---|---|
committer | mat <mat@FreeBSD.org> | 2017-12-15 23:56:09 +0800 |
commit | 4ca32a99888d91dcad9edcd23c1605e7d4a03d75 (patch) | |
tree | b200c57fa4bce32ddbb2c2e1e905db9692603ee7 /Mk | |
parent | ad26b780c399ce4ee913ee40b984b6693dc884d7 (diff) | |
download | freebsd-ports-gnome-4ca32a99888d91dcad9edcd23c1605e7d4a03d75.tar.gz freebsd-ports-gnome-4ca32a99888d91dcad9edcd23c1605e7d4a03d75.tar.zst freebsd-ports-gnome-4ca32a99888d91dcad9edcd23c1605e7d4a03d75.zip |
Fix qa lib dependency checks when using libmap.conf.
This happens, for instance, if x11/nvidia-driver is installed.
PR: 221406
Submitted by: tobik
Approved by: bapt
Sponsored by: Absolight
Differential Revision: https://reviews.freebsd.org/D11977
Diffstat (limited to 'Mk')
-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 868043601a92..87f2b23d689b 100644 --- a/Mk/Scripts/qa.sh +++ b/Mk/Scripts/qa.sh @@ -677,7 +677,7 @@ proxydeps() { fi already="${already} ${dep_file}" done <<-EOT - $(ldd -a "${STAGEDIR}${file}" | \ + $(env LD_LIBMAP_DISABLE=1 ldd -a "${STAGEDIR}${file}" | \ awk '\ BEGIN {section=0}\ /^\// {section++}\ |