Date: Fri, 15 Dec 2017 15:56:09 +0000 (UTC) From: Mathieu Arnold <mat@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r456405 - head/Mk/Scripts Message-ID: <201712151556.vBFFu9IH056682@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: mat Date: Fri Dec 15 15:56:09 2017 New Revision: 456405 URL: https://svnweb.freebsd.org/changeset/ports/456405 Log: 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 Modified: head/Mk/Scripts/qa.sh (contents, props changed) Modified: head/Mk/Scripts/qa.sh ============================================================================== --- head/Mk/Scripts/qa.sh Fri Dec 15 15:41:50 2017 (r456404) +++ head/Mk/Scripts/qa.sh Fri Dec 15 15:56:09 2017 (r456405) @@ -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++}\
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201712151556.vBFFu9IH056682>