Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 26 Oct 2013 21:33:23 +0000 (UTC)
From:      Bryan Drewery <bdrewery@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r331736 - head/mail/p5-Sendmail-Milter
Message-ID:  <201310262133.r9QLXNj2056078@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: bdrewery
Date: Sat Oct 26 21:33:23 2013
New Revision: 331736
URL: http://svnweb.freebsd.org/changeset/ports/331736

Log:
  - Fix warning during 'make index' with bmake
  
  With hat:	portmgr

Modified:
  head/mail/p5-Sendmail-Milter/Makefile

Modified: head/mail/p5-Sendmail-Milter/Makefile
==============================================================================
--- head/mail/p5-Sendmail-Milter/Makefile	Sat Oct 26 21:18:26 2013	(r331735)
+++ head/mail/p5-Sendmail-Milter/Makefile	Sat Oct 26 21:33:23 2013	(r331736)
@@ -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



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