aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkris <kris@FreeBSD.org>2003-10-19 16:14:20 +0800
committerkris <kris@FreeBSD.org>2003-10-19 16:14:20 +0800
commit7ca00919db6846bea602acf382c2115895f07248 (patch)
tree9e3bc1a6065df7496988bb03d4c959067d135440
parentf7ce9d42d72ee757ab59bded97e108e44909701b (diff)
downloadfreebsd-ports-gnome-7ca00919db6846bea602acf382c2115895f07248.tar.gz
freebsd-ports-gnome-7ca00919db6846bea602acf382c2115895f07248.tar.zst
freebsd-ports-gnome-7ca00919db6846bea602acf382c2115895f07248.zip
Respect CC and CFLAGS
-rw-r--r--archivers/9e/files/patch-aa20
1 files changed, 14 insertions, 6 deletions
diff --git a/archivers/9e/files/patch-aa b/archivers/9e/files/patch-aa
index 9ad57eedccf3..e85b1648bdd3 100644
--- a/archivers/9e/files/patch-aa
+++ b/archivers/9e/files/patch-aa
@@ -1,12 +1,13 @@
---- Makefile.orig Thu Jun 22 18:59:41 2000
-+++ Makefile Thu Jun 22 19:04:02 2000
-@@ -1,14 +1,9 @@
+--- Makefile.orig Thu Jun 15 06:40:52 2000
++++ Makefile Sun Oct 19 01:13:32 2003
+@@ -1,14 +1,11 @@
# Makefile for 9e
-CC = gcc
--
++CC ?= cc
+
-CFLAGS = -g3 -ggdb
-+CFLAGS = -O
++CFLAGS ?= -O -pipe
.PHONY: all clean distclean
@@ -16,7 +17,7 @@
SRCS = 9e.c
OBJS = 9e.o
-@@ -17,7 +12,7 @@
+@@ -17,7 +14,7 @@
all: $(BINARIES)
9e: $(OBJS)
@@ -25,3 +26,10 @@
clean:
rm -f *.o *~ a.out
+@@ -26,4 +23,4 @@
+ distclean: clean
+ rm -f ${BINARIES}
+
+-# EOF
+\ No newline at end of file
++# EOF