Gentoo Archives: gentoo-commits

From: "Mike Gilbert (floppym)" <floppym@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-dialup/xl2tpd/files: xl2tpd-1.3.1-CFLAGS.patch
Date: Tue, 25 Dec 2012 21:10:27
Message-Id: 20121225211005.C371920081@flycatcher.gentoo.org
1 floppym 12/12/25 21:10:05
2
3 Added: xl2tpd-1.3.1-CFLAGS.patch
4 Log:
5 Respect CFLAGS.
6
7 (Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key 0BBEEA1FEA4843A4)
8
9 Revision Changes Path
10 1.1 net-dialup/xl2tpd/files/xl2tpd-1.3.1-CFLAGS.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/xl2tpd/files/xl2tpd-1.3.1-CFLAGS.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-dialup/xl2tpd/files/xl2tpd-1.3.1-CFLAGS.patch?rev=1.1&content-type=text/plain
14
15 Index: xl2tpd-1.3.1-CFLAGS.patch
16 ===================================================================
17 commit 898e8541804d0f5a6475b27f8ca5e57cf282208f
18 Author: Mike Gilbert <floppym@g.o>
19 Date: Tue Dec 25 16:05:33 2012 -0500
20
21 Respect CFLAGS for xl2tpd-control.
22
23 diff --git a/Makefile b/Makefile
24 index 2a0f341..d694246 100644
25 --- a/Makefile
26 +++ b/Makefile
27 @@ -115,7 +115,7 @@ $(EXEC): $(OBJS) $(HDRS)
28 $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LDLIBS)
29
30 $(CONTROL_EXEC): $(CONTROL_SRCS)
31 - $(CC) $(LDFLAGS) $(CONTROL_SRCS) -o $@
32 + $(CC) $(CFLAGS) $(LDFLAGS) $(CONTROL_SRCS) -o $@
33
34 pfc:
35 $(CC) $(CFLAGS) -c contrib/pfc.c