mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
99e148dd27
As reported by Robert Scott in https://github.com/NixOS/nixpkgs/pull/245066 without the change `make -j8` build of `make` occasionally fails to buildin parallel. The simplest reproducer is: $$ ./configure $$ make unwind_prot.o ... In file included from unwind_prot.c:51: In file included from ./bashintl.h:30: ./include/gettext.h:27:11: fatal error: 'libintl.h' file not found # include <libintl.h> ^~~~~~~~~~~ 1 error generated. make: * [Makefile:106: unwind_prot.o] Error 1 The change adds missing ttransitive `${LIBINTL_H}` dependency for unwind_prot.o.
12 lines
643 B
Diff
12 lines
643 B
Diff
From https://savannah.gnu.org/patch/index.php?10373
|
|
https://savannah.gnu.org/patch/download.php?file_id=54964
|
|
--- Makefile.in
|
|
+++ Makefile.in
|
|
@@ -1432,6 +1432,7 @@ siglist.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|
subst.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|
test.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|
trap.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|
+unwind_prot.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|
variables.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|
version.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|
|
xmalloc.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h
|