Gentoo Archives: gentoo-commits

From: "Diego Petteno (flameeyes)" <flameeyes@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/fbset/files: fbset-2.1-build.patch
Date: Tue, 10 Jul 2012 08:50:59
Message-Id: 20120710085050.0968720063@flycatcher.gentoo.org
1 flameeyes 12/07/10 08:50:49
2
3 Added: fbset-2.1-build.patch
4 Log:
5 Fix parallel build properly, solves bug #421203.
6
7 (Portage version: 2.2.0_alpha116/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 sys-apps/fbset/files/fbset-2.1-build.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/fbset/files/fbset-2.1-build.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/fbset/files/fbset-2.1-build.patch?rev=1.1&content-type=text/plain
14
15 Index: fbset-2.1-build.patch
16 ===================================================================
17 Index: fbset-2.1/Makefile
18 ===================================================================
19 --- fbset-2.1.orig/Makefile
20 +++ fbset-2.1/Makefile
21 @@ -2,7 +2,6 @@
22 # Linux Frame Buffer Device Configuration
23 #
24
25 -CC = gcc -Wall -O2 -I.
26 BISON = bison -d
27 FLEX = flex
28 INSTALL = install
29 @@ -20,6 +19,8 @@ lex.yy.o: lex.yy.c fbset.h modes.tab.h
30 lex.yy.c: modes.l
31 $(FLEX) modes.l
32
33 +modes.tab.h: modes.tab.c
34 +
35 modes.tab.c: modes.y
36 $(BISON) modes.y