svn commit: r456405 - head/Mk/Scripts

Mathieu Arnold mat at FreeBSD.org
Fri Dec 15 15:56:10 UTC 2017


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++}\


More information about the svn-ports-head mailing list