svn commit: r375297 - head/Mk/Scripts

Mathieu Arnold mat at FreeBSD.org
Tue Dec 23 00:27:20 UTC 2014


Author: mat
Date: Tue Dec 23 00:27:18 2014
New Revision: 375297
URL: https://svnweb.freebsd.org/changeset/ports/375297
QAT: https://qat.redports.org/buildarchive/r375297/

Log:
  Don't output a warning if PERL_ARCH does not exist.
  
  With hat:	portmgr
  Sponsored by:	Absolight

Modified:
  head/Mk/Scripts/qa.sh

Modified: head/Mk/Scripts/qa.sh
==============================================================================
--- head/Mk/Scripts/qa.sh	Tue Dec 23 00:15:30 2014	(r375296)
+++ head/Mk/Scripts/qa.sh	Tue Dec 23 00:27:18 2014	(r375297)
@@ -208,7 +208,7 @@ libtool() {
 
 libperl() {
 	local has_some_libperl_so files found
-	if [ -n "${SITE_ARCH_REL}" ]; then
+	if [ -n "${SITE_ARCH_REL}" -a -d "${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}" ]; then
 		has_some_libperl_so=0
 		files=0
 		while read f; do


More information about the svn-ports-head mailing list