aboutsummaryrefslogtreecommitdiffstats
path: root/Mk/Uses
diff options
context:
space:
mode:
authorsunpoet <sunpoet@FreeBSD.org>2013-10-28 01:35:52 +0800
committersunpoet <sunpoet@FreeBSD.org>2013-10-28 01:35:52 +0800
commit7a038f9db5df707dcc19af7d7e5c30cd0e3250a6 (patch)
tree7d653909bfb3b1f7931645746755bd1841009127 /Mk/Uses
parentffdd364606b17e631f354a40029465cfc6caa4e7 (diff)
downloadfreebsd-ports-gnome-7a038f9db5df707dcc19af7d7e5c30cd0e3250a6.tar.gz
freebsd-ports-gnome-7a038f9db5df707dcc19af7d7e5c30cd0e3250a6.tar.zst
freebsd-ports-gnome-7a038f9db5df707dcc19af7d7e5c30cd0e3250a6.zip
- Use leading "-" to ignore exit status instead of trailing "|| ${TRUE}"
Suggested by: mat
Diffstat (limited to 'Mk/Uses')
-rw-r--r--Mk/Uses/perl5.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/Uses/perl5.mk b/Mk/Uses/perl5.mk
index 4b9da58b06b5..7c5740987d33 100644
--- a/Mk/Uses/perl5.mk
+++ b/Mk/Uses/perl5.mk
@@ -261,6 +261,6 @@ do-install:
post-stage::
# TODO: change to ${_USE_PERL5:Mconfigure} when M::B creates .packlist
.if ${USE_PERL5:Mconfigure} || ${USE_PERL5:Mmodbuildtiny}
- @([ -d ${STAGEDIR}${SITE_PERL}/${PERL_ARCH}/auto ] && ${FIND} ${STAGEDIR}${SITE_PERL}/${PERL_ARCH}/auto -name .packlist -exec ${SED} -i '' 's|^${STAGEDIR}||' '{}' \;) || ${TRUE}
+ -@[ -d ${STAGEDIR}${SITE_PERL}/${PERL_ARCH}/auto ] && ${FIND} ${STAGEDIR}${SITE_PERL}/${PERL_ARCH}/auto -name .packlist -exec ${SED} -i '' 's|^${STAGEDIR}||' '{}' \;
.endif
.endif # defined(_POSTMKINCLUDED)