diff options
author | xride <xride@FreeBSD.org> | 2014-06-24 03:11:07 +0800 |
---|---|---|
committer | xride <xride@FreeBSD.org> | 2014-06-24 03:11:07 +0800 |
commit | 58e5934e632387830831652132815fe075078c7a (patch) | |
tree | b9059f637876296f48e20312b2ff23a7f684709b /sysutils/wmbsdbatt | |
parent | b7b7f1fa285cb9acc012fae8cb39f2d30313d1b9 (diff) | |
download | freebsd-ports-gnome-58e5934e632387830831652132815fe075078c7a.tar.gz freebsd-ports-gnome-58e5934e632387830831652132815fe075078c7a.tar.zst freebsd-ports-gnome-58e5934e632387830831652132815fe075078c7a.zip |
Fixed a hardcoded gcc
Reported by: pkg-fallout@FreeBSD.org
Diffstat (limited to 'sysutils/wmbsdbatt')
-rw-r--r-- | sysutils/wmbsdbatt/files/patch-Makefile | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/sysutils/wmbsdbatt/files/patch-Makefile b/sysutils/wmbsdbatt/files/patch-Makefile index e079b3615c60..a98f9c25bd04 100644 --- a/sysutils/wmbsdbatt/files/patch-Makefile +++ b/sysutils/wmbsdbatt/files/patch-Makefile @@ -1,6 +1,6 @@ ---- Makefile.orig Fri Nov 24 16:37:59 2006 -+++ Makefile Fri Nov 24 16:39:35 2006 -@@ -1,12 +1,12 @@ +--- Makefile.orig 2003-12-23 12:27:34.000000000 -0600 ++++ Makefile 2014-06-23 19:12:15.000000000 -0500 +@@ -1,22 +1,19 @@ # Makefile for wmbsdbatt # # $Id: Makefile,v 1.1 2003/12/23 18:27:34 le Exp $ @@ -16,13 +16,14 @@ all: ${PROGRAM} -@@ -14,9 +14,6 @@ - gcc ${CFLAGS} ${LDFLAGS} -o ${PROGRAM} ${OBJS} + ${PROGRAM}: ${OBJS} +- gcc ${CFLAGS} ${LDFLAGS} -o ${PROGRAM} ${OBJS} ++ ${CC} ${CFLAGS} ${LDFLAGS} -o ${PROGRAM} ${OBJS} ${OBJS}: ${HEADER} -- + -install: - install -c -o 0 -g 0 -s ${PROGRAM} /usr/X11R6/bin - +- clean: rm -f *.o *.core ${PROGRAM} |