Gentoo Archives: gentoo-commits

From: "Nirbheek Chauhan (nirbheek)" <nirbheek@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-libs/pango/files: pango-1.26.0-fix-parallel-build.patch
Date: Sat, 31 Oct 2009 14:33:31
Message-Id: E1N4F1F-0004hx-L5@stork.gentoo.org
1 nirbheek 09/10/31 14:33:29
2
3 Added: pango-1.26.0-fix-parallel-build.patch
4 Log:
5 Fix parallel build with patch by Martin von Gagern from bug 287825
6 (Portage version: 2.1.7.2/cvs/Linux i686)
7
8 Revision Changes Path
9 1.1 x11-libs/pango/files/pango-1.26.0-fix-parallel-build.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pango/files/pango-1.26.0-fix-parallel-build.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-libs/pango/files/pango-1.26.0-fix-parallel-build.patch?rev=1.1&content-type=text/plain
13
14 Index: pango-1.26.0-fix-parallel-build.patch
15 ===================================================================
16 Avoid parallel build issues.
17
18 The pango-view.1 manpage requires the pango-view binary because help2man
19 needs to execute it. Instead of calling make as one of the commands,
20 however, the executable should simply be declared as a dependency. This
21 avoids two make jobs building the same target at the same time, which may
22 otherwise lead to failing builds or even broken applications.
23
24 2009-10-30 Martin von Gagern
25
26 References:
27 http://bugs.gentoo.org/287825
28 Upstream bug:
29 https://bugzilla.gnome.org/show_bug.cgi?id=600207
30 ---
31 --- pango-view/Makefile.am
32 +++ pango-view/Makefile.am
33 @@ -88,8 +88,7 @@ MAINTAINERCLEANFILES = pango-view.1
34
35 dist_man_MANS = pango-view.1
36
37 -$(srcdir)/pango-view.1: ../configure.in $(pango_view_SOURCES)
38 - $(MAKE) $(AM_MAKEFLAGS) pango-view$(EXEEXT)
39 +$(srcdir)/pango-view.1: ../configure.in $(pango_view_SOURCES) pango-view$(EXEEXT)
40 $(AM_V_GEN) $(top_builddir)/missing --run \
41 help2man --no-info --section=1 \
42 --help-option="--help-all" --output="$@.tmp" \