diff options
author | Kirill Ponomarev <krion@FreeBSD.org> | 2003-11-02 18:21:08 +0000 |
---|---|---|
committer | Kirill Ponomarev <krion@FreeBSD.org> | 2003-11-02 18:21:08 +0000 |
commit | 49909de3489ebdc672c49c008f40ebcc9a4c708c (patch) | |
tree | 74bb0d5ada048824e5cb44fca0483bb14253a78c /benchmarks/autobench | |
parent | 62f10d03f42030c80e920b5160aec24fac271817 (diff) |
- Add patch to respect CFLAGS
PR: 58838
Submitted by: Jens Rehsack <rehsack@liwing.de>
Notes
Notes:
svn path=/head/; revision=92860
Diffstat (limited to 'benchmarks/autobench')
-rw-r--r-- | benchmarks/autobench/files/patch-Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/benchmarks/autobench/files/patch-Makefile b/benchmarks/autobench/files/patch-Makefile new file mode 100644 index 000000000000..c142a3f5f832 --- /dev/null +++ b/benchmarks/autobench/files/patch-Makefile @@ -0,0 +1,15 @@ +--- Makefile.orig Sat Nov 1 17:15:35 2003 ++++ Makefile Sat Nov 1 17:16:01 2003 +@@ -20,9 +20,9 @@ + endif + + # Compiler & flags +-CC=gcc +-CFLAGS=-O2 -Wall +-DEBUG_FLAGS=-Wall -g ++CC?=gcc ++CFLAGS?=-O2 -Wall ++DEBUG_FLAGSi?=-Wall -g + + all: crfile sesslog + |