diff options
author | kris <kris@FreeBSD.org> | 2003-10-19 16:20:32 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2003-10-19 16:20:32 +0800 |
commit | 580d94c0c0f7d06fcfe4cba334632c8baa03a5ab (patch) | |
tree | bb068de04151f5c7f24c563f04261d8551108825 /archivers | |
parent | 7ca00919db6846bea602acf382c2115895f07248 (diff) | |
download | freebsd-ports-gnome-580d94c0c0f7d06fcfe4cba334632c8baa03a5ab.tar.gz freebsd-ports-gnome-580d94c0c0f7d06fcfe4cba334632c8baa03a5ab.tar.zst freebsd-ports-gnome-580d94c0c0f7d06fcfe4cba334632c8baa03a5ab.zip |
Fully respect CC and CFLAGS
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/macutils/files/patch-ao | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/archivers/macutils/files/patch-ao b/archivers/macutils/files/patch-ao new file mode 100644 index 000000000000..c053bcbb1716 --- /dev/null +++ b/archivers/macutils/files/patch-ao @@ -0,0 +1,17 @@ +--- crc/makefile.orig Sun Oct 19 01:17:42 2003 ++++ crc/makefile Sun Oct 19 01:18:15 2003 +@@ -1,4 +1,4 @@ +-CFLAGS = -O $(CF) ++CFLAGS += $(CF) + CRCC = arc.c ccitt.c kermit.c binhex.c ccitt32.c zip.c + CRCO = arc.o ccitt.o kermit.o binhex.o ccitt32.o zip.o + +@@ -16,7 +16,7 @@ + ./makecrc + + makecrc: makecrc.o +- cc -O -o makecrc makecrc.o ++ $(CC) $(CFLAGS) -o makecrc makecrc.o + + arc.o: arc.c + ccitt.o: ccitt.c |