diff options
author | kris <kris@FreeBSD.org> | 2001-04-29 23:36:40 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2001-04-29 23:36:40 +0000 |
commit | 281f0ed8d2ee74a723c58a9f74d95ff2f66323c7 (patch) | |
tree | 9164e609b7c57c45018e6285504d70636e1bf8a9 /devel/xmake/files | |
parent | bcb2eeeaab0aef7569fe715ba9317f7727e157fe (diff) | |
download | FreeBSD-ports-281f0ed8d2ee74a723c58a9f74d95ff2f66323c7.zip FreeBSD-ports-281f0ed8d2ee74a723c58a9f74d95ff2f66323c7.tar.gz |
Don't hard-code CFLAGS=-O2 and CC
Diffstat (limited to 'devel/xmake/files')
-rw-r--r-- | devel/xmake/files/patch-aa | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/devel/xmake/files/patch-aa b/devel/xmake/files/patch-aa index 7d10dece..3c2403d 100644 --- a/devel/xmake/files/patch-aa +++ b/devel/xmake/files/patch-aa @@ -1,11 +1,11 @@ --- Makefile.orig Sun Jul 26 16:11:40 1998 +++ Makefile Sun Jul 26 16:14:35 1998 -@@ -1,11 +1,12 @@ +@@ -1,11 +1,11 @@ SRCS= include.c list.c main.c subs.c var.c wild.c OBJS= include.o list.o main.o subs.o var.o wild.o -CFLAGS= -g -O2 -Wall -Wstrict-prototypes -+CFLAGS= -O2 -Wall ++CFLAGS+= -Wall LFLAGS= EXE= xmake -IBDIR= /usr/local/bin @@ -13,7 +13,7 @@ +PREFIX?= /usr/local +IBDIR= $(PREFIX)/bin +IMDIR= $(PREFIX)/man/man1 - CC= cc +-CC= cc all: $(EXE) @@ -16,6 +17,6 @@ |