diff options
Diffstat (limited to 'net/bittwist')
-rw-r--r-- | net/bittwist/files/patch-Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/net/bittwist/files/patch-Makefile b/net/bittwist/files/patch-Makefile new file mode 100644 index 000000000000..9f10c5b73c61 --- /dev/null +++ b/net/bittwist/files/patch-Makefile @@ -0,0 +1,15 @@ +--- Makefile.orig Thu Apr 13 22:58:48 2006 ++++ Makefile Sat Apr 22 21:28:25 2006 +@@ -5,10 +5,11 @@ + bindir = ${exec_prefix}/bin + mandir = ${prefix}/man/man1 + +-CC = gcc ++CC ?= gcc + DEBUG = -g + #CFLAGS = -O2 -Wall $(DEBUG) +-CFLAGS = -O2 $(DEBUG) ++CFLAGS ?= -O2 ++CFLAGS += $(DEBUG) + SRC = src + DOC = doc |