Date: Sat, 8 Feb 2014 11:38:18 +0000 (UTC) From: Ulrich Spoerlein <uqs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r343321 - head/mail/mairix Message-ID: <201402081138.s18BcIbq053499@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: uqs Date: Sat Feb 8 11:38:17 2014 New Revision: 343321 URL: http://svnweb.freebsd.org/changeset/ports/343321 QAT: https://qat.redports.org/buildarchive/r343321/ Log: Mark as jobs unsafe, the port doesn't build in parallel. % for i in `jot 20`; do { make clean && make; } >/dev/null 2>&1; echo -n " $?"; done; echo 0 0 0 0 0 0 1 0 0 1 0 0 0 0 0 1 1 0 0 0 % for i in `jot 20`; do { make clean && make -DMAKE_JOBS_UNSAFE; } >/dev/null 2>&1; echo -n " $?"; done; echo 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 Modified: head/mail/mairix/Makefile Modified: head/mail/mairix/Makefile ============================================================================== --- head/mail/mairix/Makefile Sat Feb 8 11:16:42 2014 (r343320) +++ head/mail/mairix/Makefile Sat Feb 8 11:38:17 2014 (r343321) @@ -27,10 +27,11 @@ BZIP2_DESC= bzip2 compressed mbox suppor GZIP_CONFIGURE_ENABLE= gzip-mbox BZIP2_CONFIGURE_ENABLE= bzip-mbox +MAKE_JOBS_UNSAFE= yes NO_STAGE= yes .include <bsd.port.options.mk> -# Do not hardcode make(1) binary name and fix atomicity to allow -jX builds +# Do not hardcode make(1) binary name post-patch: @${REINPLACE_CMD} -E 's|cd (.+) ; make|$$(MAKE) -C \1|' \ ${WRKSRC}/Makefile.in
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402081138.s18BcIbq053499>