From 62adf9f077b257a527a6585a3460cbc36fc85d31 Mon Sep 17 00:00:00 2001 From: Bruno Haible Date: Tue, 19 Nov 2024 20:07:32 +0100 Subject: [PATCH] po: Fix build failure with parallel make. Reported by Lubomir Rintel in . * gettext-runtime/po/Makefile.in.in (.NOTPARALLEL): Add this special target. --- gettext-runtime/po/Makefile.in.in | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/gettext-runtime/po/Makefile.in.in b/gettext-runtime/po/Makefile.in.in index 3df87a0f1..6f5b49681 100644 --- a/gettext-runtime/po/Makefile.in.in +++ b/gettext-runtime/po/Makefile.in.in @@ -509,3 +509,9 @@ force: # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: + +# This Makefile contains rules which don't work with parallel make, +# namely dist2. +# See . +# So, turn off parallel execution in this Makefile. +.NOTPARALLEL: -- 2.47.3