summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authormarino <marino@pkgsrc.org>2012-05-19 16:31:29 +0000
committermarino <marino@pkgsrc.org>2012-05-19 16:31:29 +0000
commitf1f682edfd096258475299713da7b2f56d68a37e (patch)
tree2ef7dffdaae60122feedcff7d473adfd7b049fcd /lang
parent44621de5b4241431063814864cc562c9c3af48f8 (diff)
downloadpkgsrc-f1f682edfd096258475299713da7b2f56d68a37e.tar.gz
lang/gprolog: Build failure is not jobs safe
gprolog fails to build on DragonFly-*-i386. A fatal error (exception raised) occurs on fd2c.pl:215-220 on this platform. The build hangs after that (halts bulk build forever), another job apparently never exits. Setting the package to a single job fixes the problem, so apparently a successful build is jobs safe, but not a build failure.
Diffstat (limited to 'lang')
-rw-r--r--lang/gprolog/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/lang/gprolog/Makefile b/lang/gprolog/Makefile
index 83002d4c923..31facf002f5 100644
--- a/lang/gprolog/Makefile
+++ b/lang/gprolog/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.13 2010/05/19 09:10:55 asau Exp $
+# $NetBSD: Makefile,v 1.14 2012/05/19 16:31:29 marino Exp $
DISTNAME= gprolog-1.3.1
CATEGORIES= lang
@@ -18,4 +18,6 @@ CONFIGURE_ARGS+= --with-install-dir=${PREFIX}/lib/${PKGNAME_NOREV} \
--with-examples-dir=${PREFIX}/share/examples/gprolog \
--with-c-flags=${CFLAGS:Q}
+MAKE_JOBS_SAFE= no
+
.include "../../mk/bsd.pkg.mk"