From: Bruno Haible Date: Sat, 11 May 2019 01:26:56 +0000 (+0200) Subject: build: Fix build failure with parallel make. X-Git-Tag: v0.20.1~6 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7e78b48b321e36433abeb4ff1b73375455e74f83;p=thirdparty%2Fgettext.git build: Fix build failure with parallel make. Reported by Lars Wendler . * gettext-tools/src/Makefile.am (.NOTPARALLEL): Add this special target. --- diff --git a/gettext-tools/src/Makefile.am b/gettext-tools/src/Makefile.am index 09a3c153d..b98b7abd3 100644 --- a/gettext-tools/src/Makefile.am +++ b/gettext-tools/src/Makefile.am @@ -657,6 +657,7 @@ RELOCATABLE_BUILD_DIR = ../gnulib-lib RELOCATABLE_CONFIG_H_DIR = .. RELOCATABLE_STRIP = : + # Version information according to Woe32 conventions. if WOE32 WOE32_LDADD = gettext.res @@ -666,3 +667,10 @@ MOSTLYCLEANFILES += gettext.res else WOE32_LDADD = endif + + +# This Makefile contains rules which don't work with parallel make, +# namely those which build textstyle.h, po-gram-gen.c, cldr-plural.c. +# See . +# So, turn off parallel execution in this Makefile. +.NOTPARALLEL: