diff options
author | Justin Lecher <jlec@gentoo.org> | 2013-04-01 13:14:17 +0000 |
---|---|---|
committer | Justin Lecher <jlec@gentoo.org> | 2013-04-01 13:14:17 +0000 |
commit | 65f5ec2bc7d8c2a9525f08212e707513770dd5ee (patch) | |
tree | 57ed89b6e17538af9dd243fbd4f1547f93036be2 /net-misc/vpncwatch/files | |
parent | Version bump. (diff) | |
download | gentoo-2-65f5ec2bc7d8c2a9525f08212e707513770dd5ee.tar.gz gentoo-2-65f5ec2bc7d8c2a9525f08212e707513770dd5ee.tar.bz2 gentoo-2-65f5ec2bc7d8c2a9525f08212e707513770dd5ee.zip |
net-misc/vpncwatch: Version BUmp
(Portage version: 2.2.0_alpha170/cvs/Linux x86_64, signed Manifest commit with key 8009D6F070EB7916)
Diffstat (limited to 'net-misc/vpncwatch/files')
-rw-r--r-- | net-misc/vpncwatch/files/vpncwatch-1.8.1-Makefile.patch | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/net-misc/vpncwatch/files/vpncwatch-1.8.1-Makefile.patch b/net-misc/vpncwatch/files/vpncwatch-1.8.1-Makefile.patch new file mode 100644 index 000000000000..1f982ee76a3f --- /dev/null +++ b/net-misc/vpncwatch/files/vpncwatch-1.8.1-Makefile.patch @@ -0,0 +1,23 @@ + Makefile | 4 ++-- + 1 files changed, 2 insertions(+), 2 deletions(-) + +diff --git a/Makefile b/Makefile +index 901e0ae..599499a 100644 +--- a/Makefile ++++ b/Makefile +@@ -10,13 +10,13 @@ OBJS = vpncwatch.o proc.o net.o + DISTFILES = AUTHORS COPYING README Makefile $(SRCS) $(HDRS) vpnc-watch.py + + CC ?= gcc +-CFLAGS = -D_GNU_SOURCE -O2 -Wall -Werror ++CFLAGS += -D_GNU_SOURCE -Wall + + # Update version in vpncwatch.h as well + TAG = vpncwatch-1.8.1 + + vpncwatch: $(OBJS) +- $(CC) $(CFLAGS) -o $@ $(OBJS) ++ $(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(OBJS) + + .c.o: + $(CC) $(CFLAGS) -c -o $@ $< |