svn commit: r427742 - head/Mk/Scripts

Sunpoet Po-Chuan Hsieh sunpoet at FreeBSD.org
Sat Dec 3 21:30:09 UTC 2016


Author: sunpoet
Date: Sat Dec  3 21:30:08 2016
New Revision: 427742
URL: https://svnweb.freebsd.org/changeset/ports/427742

Log:
  - Skip soname check if ${STAGEDIR}${PREFIX}/lib directory does not exist
  
  Differential Revision:	https://reviews.FreeBSD.org/D8697
  Approved by:	mat (portmgr)

Modified:
  head/Mk/Scripts/qa.sh

Modified: head/Mk/Scripts/qa.sh
==============================================================================
--- head/Mk/Scripts/qa.sh	Sat Dec  3 21:14:01 2016	(r427741)
+++ head/Mk/Scripts/qa.sh	Sat Dec  3 21:30:08 2016	(r427742)
@@ -708,7 +708,7 @@ proxydeps() {
 }
 
 sonames() {
-	[ -n "${BUNDLE_LIBS}" ] && return 0
+	[ ! -d ${STAGEDIR}${PREFIX}/lib -o -n "${BUNDLE_LIBS}" ] && return 0
 	while read f; do
 		# No results presents a blank line from heredoc.
 		[ -z "${f}" ] && continue


More information about the svn-ports-head mailing list