Subject: [PATCH] gettext-tools is not MAKE_JOBS safe
To: None <pkgsrc-users@netbsd.org>
From: Rumko <rumcic@gmail.com>
List: pkgsrc-users
Date: 12/21/2007 18:32:26
--nextPart1304631.PoXPnVPVfU
Content-Type: text/plain; charset=utf-8
Content-Transfer-Encoding: 8Bit

With MAKE_JOBS=2 I get:
Making all in lib
--- canonicalize.o ---
In file included from canonicalize.c:1:
../../gettext-tools/lib/canonicalize.c:30:20: error: alloca.h: No such file or
directory
*** [canonicalize.o] Error code 1

Without MAKE_JOBS, it compiles cleanly.

--nextPart1304631.PoXPnVPVfU
Content-Type: text/x-diff; name="gettext-tools.patch"
Content-Transfer-Encoding: 8Bit
Content-Disposition: attachment; filename="gettext-tools.patch"

Index: Makefile
===================================================================
RCS file: /cvsroot/pkgsrc/devel/gettext-tools/Makefile,v
retrieving revision 1.8
diff -u -p -r1.8 Makefile
--- Makefile	26 Nov 2007 18:08:36 -0000	1.8
+++ Makefile	21 Dec 2007 17:32:06 -0000
@@ -13,6 +13,8 @@ COMMENT=	Tools for providing messages in
 BUILDLINK_API_DEPENDS.gettext+=	gettext-lib>=0.14.5
 CONFLICTS=		gettext<0.14.5
 
+MAKE_JOBS_SAFE=		no
+
 USE_LIBTOOL=		yes
 USE_PKGLOCALEDIR=	yes
 GNU_CONFIGURE=		yes


--nextPart1304631.PoXPnVPVfU--