Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-shells/bash/files: bash-3.2-parallel-build.patch
Date: Sun, 28 Oct 2007 19:23:14
Message-Id: E1ImDiv-0007zq-IF@stork.gentoo.org
1 vapier 07/10/28 19:23:01
2
3 Added: bash-3.2-parallel-build.patch
4 Log:
5 Fix building in parallel #189671.
6 (Portage version: 2.1.3.16)
7
8 Revision Changes Path
9 1.1 app-shells/bash/files/bash-3.2-parallel-build.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/bash/files/bash-3.2-parallel-build.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-shells/bash/files/bash-3.2-parallel-build.patch?rev=1.1&content-type=text/plain
13
14 Index: bash-3.2-parallel-build.patch
15 ===================================================================
16 http://bugs.gentoo.org/189671
17 http://lists.gnu.org/archive/html/bug-bash/2007-08/msg00081.html
18
19 --- bash-3.2/Makefile.in
20 +++ bash-3.2/Makefile.in
21 @@ -584,7 +584,9 @@
22 @( { test "${RL_LIBDIR}" = "${libdir}" && exit 0; } || \
23 cd ${RL_LIBDIR} && $(MAKE) $(MFLAGS) libreadline.a) || exit 1
24
25 -$(HISTORY_LIBRARY): config.h $(HISTORY_SOURCE)
26 +# prevent parallel build race conditions in the lib/readline/ subdir
27 +# by depending on libreadline.a when applicable
28 +$(HISTORY_LIBRARY): config.h $(HISTORY_SOURCE) $(READLINE_DEP)
29 @echo making $@ in ${HIST_LIBDIR}
30 @( { test "${HIST_LIBDIR}" = "${libdir}" && exit 0; } || \
31 cd ${HIST_LIBDIR} && $(MAKE) $(MFLAGS) libhistory.a) || exit 1
32
33
34
35 --
36 gentoo-commits@g.o mailing list