diff options
author | billf <billf@FreeBSD.org> | 1999-08-05 05:59:29 +0800 |
---|---|---|
committer | billf <billf@FreeBSD.org> | 1999-08-05 05:59:29 +0800 |
commit | 2e8396385f8e6879d29d4bc575a904b3e4aabb90 (patch) | |
tree | 1d8ab41dd9ed3ba41514ca87859d0f536aaac530 /sysutils/bkpupsd | |
parent | d841168e312e0b7d1d1b1ba229dc9339f2b3383b (diff) | |
download | freebsd-ports-gnome-2e8396385f8e6879d29d4bc575a904b3e4aabb90.tar.gz freebsd-ports-gnome-2e8396385f8e6879d29d4bc575a904b3e4aabb90.tar.zst freebsd-ports-gnome-2e8396385f8e6879d29d4bc575a904b3e4aabb90.zip |
Respect CFLAGS
Diffstat (limited to 'sysutils/bkpupsd')
-rw-r--r-- | sysutils/bkpupsd/files/patch-aa | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sysutils/bkpupsd/files/patch-aa b/sysutils/bkpupsd/files/patch-aa index 3b903e7bfb85..88642dbb8306 100644 --- a/sysutils/bkpupsd/files/patch-aa +++ b/sysutils/bkpupsd/files/patch-aa @@ -1,5 +1,5 @@ ---- Makefile.orig Sun Aug 3 10:02:37 1997 -+++ Makefile Tue Jan 27 19:44:58 1998 +--- Makefile.orig Sun Aug 3 13:02:37 1997 ++++ Makefile Wed Aug 4 13:43:37 1999 @@ -5,24 +5,22 @@ # ver 1.0 A # @@ -14,7 +14,8 @@ +SCRIPTDIR= ${PREFIX}/libexec/bkpupsd all: ./src/bkpupsd.c - ${CC} -o ./bin/bkpupsd ./src/bkpupsd.c +- ${CC} -o ./bin/bkpupsd ./src/bkpupsd.c ++ ${CC} ${CFLAGS} -o ./bin/bkpupsd ./src/bkpupsd.c install: - chown root.wheel ./bin/bkpupsd |