Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 25 Oct 2016 11:44:19 +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: r424616 - head/Mk/Scripts
Message-ID:  <201610251144.u9PBiJrY047905@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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++}\



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201610251144.u9PBiJrY047905>