Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 3 Dec 2016 21:30:08 +0000 (UTC)
From:      Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r427742 - head/Mk/Scripts
Message-ID:  <201612032130.uB3LU8rw026528@repo.freebsd.org>

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



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