diff options
author | bdrewery <bdrewery@FreeBSD.org> | 2013-10-27 05:33:23 +0800 |
---|---|---|
committer | bdrewery <bdrewery@FreeBSD.org> | 2013-10-27 05:33:23 +0800 |
commit | caff1dc99efadb32c4364e9dbad833acb280e12b (patch) | |
tree | 1b6d8f55b5cc56cf544db204d5ed012cbb4c6d2f /mail | |
parent | 4f05ba535c19abec153264060fbce14796156169 (diff) | |
download | freebsd-ports-gnome-caff1dc99efadb32c4364e9dbad833acb280e12b.tar.gz freebsd-ports-gnome-caff1dc99efadb32c4364e9dbad833acb280e12b.tar.zst freebsd-ports-gnome-caff1dc99efadb32c4364e9dbad833acb280e12b.zip |
- Fix warning during 'make index' with bmake
With hat: portmgr
Diffstat (limited to 'mail')
-rw-r--r-- | mail/p5-Sendmail-Milter/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mail/p5-Sendmail-Milter/Makefile b/mail/p5-Sendmail-Milter/Makefile index 39c5a59456ed..09381ce52293 100644 --- a/mail/p5-Sendmail-Milter/Makefile +++ b/mail/p5-Sendmail-Milter/Makefile @@ -19,7 +19,7 @@ NO_STAGE= yes .include <bsd.port.pre.mk> .if exists(${PERL5}) -PERLTHREADS!= ${PERL5} -V:usethreads | ${AWK} '/define/ { print "define"; exit }' +PERLTHREADS!= ${PERL5} -V:usethreads | ${AWK} '/define/ { print "define"; exit } END { exit 1 }' || ${ECHO_CMD} .if ${PERLTHREADS} != "define" IGNORE= requires perl to be built with -DWITH_THREADS .endif |