Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 23 Dec 2014 00:27: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: r375297 - head/Mk/Scripts
Message-ID:  <201412230027.sBN0RJ6I060769@svn.freebsd.org>

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



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