diff options
author | Jörg Bornkessel <hd_brummy@gentoo.org> | 2012-02-07 22:09:17 +0000 |
---|---|---|
committer | Jörg Bornkessel <hd_brummy@gentoo.org> | 2012-02-07 22:09:17 +0000 |
commit | e83b81e63190fb46624540582e4cea0ad1cec24e (patch) | |
tree | 34bcefe314fa08467012da34069edc35ff2c0e66 /media-plugins/vdr-cinebars/files | |
parent | Cleanup (diff) | |
download | gentoo-2-e83b81e63190fb46624540582e4cea0ad1cec24e.tar.gz gentoo-2-e83b81e63190fb46624540582e4cea0ad1cec24e.tar.bz2 gentoo-2-e83b81e63190fb46624540582e4cea0ad1cec24e.zip |
eapi=4, stable amd64 x86, compile fix for multicore CPU
(Portage version: 2.1.10.11/cvs/Linux i686)
Diffstat (limited to 'media-plugins/vdr-cinebars/files')
-rw-r--r-- | media-plugins/vdr-cinebars/files/vdr-cinebars-0.0.5_makefile.diff | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/media-plugins/vdr-cinebars/files/vdr-cinebars-0.0.5_makefile.diff b/media-plugins/vdr-cinebars/files/vdr-cinebars-0.0.5_makefile.diff new file mode 100644 index 000000000000..d01c2fe85eab --- /dev/null +++ b/media-plugins/vdr-cinebars/files/vdr-cinebars-0.0.5_makefile.diff @@ -0,0 +1,25 @@ +Joerg Bornkessel <hd_brummy@gentoo.org> 2012.01.07 +Fix Makefile for compile on multicore CPU + +diff -Naur cinebars-0.0.5.orig/Makefile cinebars-0.0.5/Makefile +--- cinebars-0.0.5.orig/Makefile 2012-02-07 23:19:00.000000000 +0100 ++++ cinebars-0.0.5/Makefile 2012-02-07 23:19:31.000000000 +0100 +@@ -49,13 +49,13 @@ + + ### The object files (add further files here): + OBJS = $(PLUGIN).o +-ifneq ($(VERS157),1) ++#ifneq ($(VERS157),1) + OBJS += i18n.o +-endif ++#endif + + ### The main target: +-all: libvdr-$(PLUGIN).so +- if [ $(VERS157) = 1 ]; then make i18n; fi ++all: libvdr-$(PLUGIN).so i18n ++# if [ $(VERS157) = 1 ]; then make i18n; fi + + ### Implicit rules: + %.o: %.c + |