diff options
author | uqs <uqs@FreeBSD.org> | 2014-02-08 19:38:17 +0800 |
---|---|---|
committer | uqs <uqs@FreeBSD.org> | 2014-02-08 19:38:17 +0800 |
commit | 8b557eca44416931844fc1c023364fa534591b5b (patch) | |
tree | 8f9b091d84d11ef80fdf894fef80ce1509c6e912 /mail | |
parent | 1e6147cc21bff42ed64012fa729a40bd92a02013 (diff) | |
download | freebsd-ports-gnome-8b557eca44416931844fc1c023364fa534591b5b.tar.gz freebsd-ports-gnome-8b557eca44416931844fc1c023364fa534591b5b.tar.zst freebsd-ports-gnome-8b557eca44416931844fc1c023364fa534591b5b.zip |
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
Diffstat (limited to 'mail')
-rw-r--r-- | mail/mairix/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mail/mairix/Makefile b/mail/mairix/Makefile index b0cda64bac43..baaf6abf8e5e 100644 --- a/mail/mairix/Makefile +++ b/mail/mairix/Makefile @@ -27,10 +27,11 @@ BZIP2_DESC= bzip2 compressed mbox support 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 |