diff options
author | Mathieu Arnold <mat@FreeBSD.org> | 2014-12-23 00:27:18 +0000 |
---|---|---|
committer | Mathieu Arnold <mat@FreeBSD.org> | 2014-12-23 00:27:18 +0000 |
commit | bc0be6ac56beb5ab93391df9540b8290ec04dc52 (patch) | |
tree | 4bbf73f340052f2ccc3d94b463f468a3347e1b67 /Mk/Scripts/qa.sh | |
parent | - patch the correct file and renamed file to be more explicit (Makefile.am) (diff) |
Don't output a warning if PERL_ARCH does not exist.
With hat: portmgr
Sponsored by: Absolight
Notes
Notes:
svn path=/head/; revision=375297
Diffstat (limited to 'Mk/Scripts/qa.sh')
-rw-r--r-- | Mk/Scripts/qa.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/Scripts/qa.sh b/Mk/Scripts/qa.sh index 7a82dcaa6394..5553849325d6 100644 --- a/Mk/Scripts/qa.sh +++ b/Mk/Scripts/qa.sh @@ -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 |