Gentoo Archives: gentoo-commits

From: "Joerg Bornkessel (hd_brummy)" <hd_brummy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-plugins/vdr-cinebars/files: vdr-cinebars-0.0.5_makefile.diff
Date: Tue, 07 Feb 2012 22:09:26
Message-Id: 20120207220917.6ED902004C@flycatcher.gentoo.org
1 hd_brummy 12/02/07 22:09:17
2
3 Added: vdr-cinebars-0.0.5_makefile.diff
4 Log:
5 eapi=4, stable amd64 x86, compile fix for multicore CPU
6
7 (Portage version: 2.1.10.11/cvs/Linux i686)
8
9 Revision Changes Path
10 1.1 media-plugins/vdr-cinebars/files/vdr-cinebars-0.0.5_makefile.diff
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-cinebars/files/vdr-cinebars-0.0.5_makefile.diff?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-plugins/vdr-cinebars/files/vdr-cinebars-0.0.5_makefile.diff?rev=1.1&content-type=text/plain
14
15 Index: vdr-cinebars-0.0.5_makefile.diff
16 ===================================================================
17 Joerg Bornkessel <hd_brummy@g.o> 2012.01.07
18 Fix Makefile for compile on multicore CPU
19
20 diff -Naur cinebars-0.0.5.orig/Makefile cinebars-0.0.5/Makefile
21 --- cinebars-0.0.5.orig/Makefile 2012-02-07 23:19:00.000000000 +0100
22 +++ cinebars-0.0.5/Makefile 2012-02-07 23:19:31.000000000 +0100
23 @@ -49,13 +49,13 @@
24
25 ### The object files (add further files here):
26 OBJS = $(PLUGIN).o
27 -ifneq ($(VERS157),1)
28 +#ifneq ($(VERS157),1)
29 OBJS += i18n.o
30 -endif
31 +#endif
32
33 ### The main target:
34 -all: libvdr-$(PLUGIN).so
35 - if [ $(VERS157) = 1 ]; then make i18n; fi
36 +all: libvdr-$(PLUGIN).so i18n
37 +# if [ $(VERS157) = 1 ]; then make i18n; fi
38
39 ### Implicit rules:
40 %.o: %.c