diff options
author | danfe <danfe@FreeBSD.org> | 2013-08-14 20:38:41 +0800 |
---|---|---|
committer | danfe <danfe@FreeBSD.org> | 2013-08-14 20:38:41 +0800 |
commit | ee6a8fc220af159d588a8859883b7bfee9007724 (patch) | |
tree | f9058bdb440a9b9c092644890464580316ad7cb2 /graphics | |
parent | bb69e11395500b706fb1fe92daec4b4d26b871f2 (diff) | |
download | freebsd-ports-graphics-ee6a8fc220af159d588a8859883b7bfee9007724.tar.gz freebsd-ports-graphics-ee6a8fc220af159d588a8859883b7bfee9007724.tar.zst freebsd-ports-graphics-ee6a8fc220af159d588a8859883b7bfee9007724.zip |
Unbreak parallel builds (-jX) on recent -CURRENT, where our make(1) is
bmake(1) now. The build fails because bmake(1) treats MFLAGS variable
slightly differently: while by default its value would be '-j X', our
old make(1) allows to set it from the makefile or environment, bmake(1)
will append to it instead. Pass the empty value via MAKE_ARGS to make
every make(1) happy, and thus fix parallel builds (once again).
Diffstat (limited to 'graphics')
-rw-r--r-- | graphics/volpack/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/graphics/volpack/Makefile b/graphics/volpack/Makefile index 3815df02c80..feed66e7135 100644 --- a/graphics/volpack/Makefile +++ b/graphics/volpack/Makefile @@ -13,8 +13,7 @@ COMMENT= Portable software library for volume rendering LICENSE= BSD GNU_CONFIGURE= yes - -MAKE_JOBS_UNSAFE=yes +MAKE_ARGS= MFLAGS="" # required for bmake(1) and -jX builds PLIST_FILES= lib/libvolpack.a \ include/volpack.h |