svn commit: r424616 - head/Mk/Scripts

Mathieu Arnold mat at FreeBSD.org
Tue Oct 25 11:44:20 UTC 2016


Author: mat
Date: Tue Oct 25 11:44:19 2016
New Revision: 424616
URL: https://svnweb.freebsd.org/changeset/ports/424616

Log:
  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

Modified:
  head/Mk/Scripts/qa.sh   (contents, props changed)

Modified: head/Mk/Scripts/qa.sh
==============================================================================
--- head/Mk/Scripts/qa.sh	Tue Oct 25 10:38:22 2016	(r424615)
+++ head/Mk/Scripts/qa.sh	Tue Oct 25 11:44:19 2016	(r424616)
@@ -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++}\


More information about the svn-ports-all mailing list