Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-analyzer/munin/files: munin-1.3.4-parallel-make-fix.patch
Date: Wed, 26 Aug 2009 20:32:33
Message-Id: E1MgRsA-0003vS-MX@stork.gentoo.org
1 robbat2 09/08/26 23:25:46
2
3 Added: munin-1.3.4-parallel-make-fix.patch
4 Log:
5 Bug #267801: obscure parallel make fix.
6 (Portage version: 2.2_rc38/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 net-analyzer/munin/files/munin-1.3.4-parallel-make-fix.patch
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/munin/files/munin-1.3.4-parallel-make-fix.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-analyzer/munin/files/munin-1.3.4-parallel-make-fix.patch?rev=1.1&content-type=text/plain
13
14 Index: munin-1.3.4-parallel-make-fix.patch
15 ===================================================================
16 diff -Nuar munin-1.3.4.orig/Makefile munin-1.3.4/Makefile
17 --- munin-1.3.4.orig/Makefile 2008-03-08 06:50:16.000000000 +0000
18 +++ munin-1.3.4/Makefile 2009-08-26 23:22:44.819138158 +0000
19 @@ -104,9 +104,11 @@
20 echo Undone.
21
22 install-node-snmp: build
23 + mkdir -p $(SBINDIR)
24 $(INSTALL) -m 0755 build/node/munin-node-configure-snmp $(SBINDIR)/
25
26 install-munindoc: build
27 + mkdir -p $(BINDIR)
28 $(INSTALL) -m 0755 build/node/munindoc $(BINDIR)/
29
30 uninstall-node-snmp: build
31 @@ -149,6 +151,7 @@
32
33 # Some HP-UX plugins needs *.adv support files in LIBDIR
34 install-node-plugins: build $(PLUGINS) Makefile Makefile.config
35 + mkdir -p $(LIBDIR)/plugins/
36 for p in build/node/node.d/* build/node/node.d.$(OSTYPE)/* ; do \
37 if test -f "$$p" ; then \
38 family=`sed -n 's/^#%# family=\(.*\)$$/\1/p' $$p`; \