Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 9 Dec 2016 14:24:07 +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: r428207 - head/Mk/Scripts
Message-ID:  <201612091424.uB9EO7cZ099736@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: mat
Date: Fri Dec  9 14:24:07 2016
New Revision: 428207
URL: https://svnweb.freebsd.org/changeset/ports/428207

Log:
  Report the binary with bad linking.
  
  Sponsored by:	Absolight

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

Modified: head/Mk/Scripts/qa.sh
==============================================================================
--- head/Mk/Scripts/qa.sh	Fri Dec  9 14:16:22 2016	(r428206)
+++ head/Mk/Scripts/qa.sh	Fri Dec  9 14:24:07 2016	(r428207)
@@ -107,15 +107,19 @@ shebang() {
 baselibs() {
 	local rc
 	local found_openssl
+	local file
 	[ "${PKGBASE}" = "pkg" -o "${PKGBASE}" = "pkg-devel" ] && return
 	while read f; do
 		case ${f} in
+		File:\ .*)
+			file=${f#File: .}
+			;;
 		*NEEDED*\[libarchive.so.[56]])
-			err "Bad linking on ${f##* } please add USES=libarchive"
+			err "Bad linking on ${f##* } for ${file} please add USES=libarchive"
 			rc=1
 			;;
 		*NEEDED*\[libedit.so.7])
-			err "Bad linking on ${f##* } please add USES=libedit"
+			err "Bad linking on ${f##* } for ${file} please add USES=libedit"
 			rc=1
 			;;
 		*NEEDED*\[libcrypto.so.*]|*NEEDED*\[libssl.so.*])



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