Gentoo Archives: gentoo-commits

From: "Justin Lecher (jlec)" <jlec@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-misc/vpncwatch/files: vpncwatch-1.8.1-Makefile.patch
Date: Mon, 01 Apr 2013 13:16:24
Message-Id: 20130401131417.259F32171E@flycatcher.gentoo.org
1 jlec 13/04/01 13:14:17
2
3 Added: vpncwatch-1.8.1-Makefile.patch
4 Log:
5 net-misc/vpncwatch: Version BUmp
6
7 (Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
8
9 Revision Changes Path
10 1.1 net-misc/vpncwatch/files/vpncwatch-1.8.1-Makefile.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/vpncwatch/files/vpncwatch-1.8.1-Makefile.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/vpncwatch/files/vpncwatch-1.8.1-Makefile.patch?rev=1.1&content-type=text/plain
14
15 Index: vpncwatch-1.8.1-Makefile.patch
16 ===================================================================
17 Makefile | 4 ++--
18 1 files changed, 2 insertions(+), 2 deletions(-)
19
20 diff --git a/Makefile b/Makefile
21 index 901e0ae..599499a 100644
22 --- a/Makefile
23 +++ b/Makefile
24 @@ -10,13 +10,13 @@ OBJS = vpncwatch.o proc.o net.o
25 DISTFILES = AUTHORS COPYING README Makefile $(SRCS) $(HDRS) vpnc-watch.py
26
27 CC ?= gcc
28 -CFLAGS = -D_GNU_SOURCE -O2 -Wall -Werror
29 +CFLAGS += -D_GNU_SOURCE -Wall
30
31 # Update version in vpncwatch.h as well
32 TAG = vpncwatch-1.8.1
33
34 vpncwatch: $(OBJS)
35 - $(CC) $(CFLAGS) -o $@ $(OBJS)
36 + $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS)
37
38 .c.o:
39 $(CC) $(CFLAGS) -c -o $@ $<