Gentoo Archives: gentoo-commits

From: "Samuli Suominen (ssuominen)" <ssuominen@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-apps/dtc/files: dtc-1.0.0-Makefile.patch
Date: Tue, 06 Jul 2010 20:06:22
Message-Id: 20100706200619.E01282C5F4@corvid.gentoo.org
1 ssuominen 10/07/06 20:06:19
2
3 Added: dtc-1.0.0-Makefile.patch
4 Log:
5 Respect environment flags wrt #241986 by Diego E. Pettenò.
6 (Portage version: 2.2_rc67/cvs/Linux x86_64)
7
8 Revision Changes Path
9 1.1 sys-apps/dtc/files/dtc-1.0.0-Makefile.patch
10
11 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dtc/files/dtc-1.0.0-Makefile.patch?rev=1.1&view=markup
12 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/dtc/files/dtc-1.0.0-Makefile.patch?rev=1.1&content-type=text/plain
13
14 Index: dtc-1.0.0-Makefile.patch
15 ===================================================================
16 Respect environment flags per http://bugs.gentoo.org/241986
17
18 --- Makefile
19 +++ Makefile
20 @@ -44,9 +44,8 @@
21 endef
22
23
24 -CPPFLAGS = -I libfdt
25 -CFLAGS = -Wall -g
26 -LDFLAGS = -Llibfdt
27 +CPPFLAGS += -Ilibfdt
28 +CFLAGS += -Wall -Llibfdt
29
30 BISON = bison
31
32 @@ -64,7 +63,7 @@
33 VECHO = :
34 else
35 VECHO = echo " "
36 -ARFLAGS = rc
37 +ARFLAGS ?= rc
38 .SILENT:
39 endif