diff options
author | kris <kris@FreeBSD.org> | 2000-01-20 17:16:07 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2000-01-20 17:16:07 +0000 |
commit | 21e07ca10e462a7ac2eb0ff25a70b59589e860e8 (patch) | |
tree | 0b6b41dd7310b6d5072922ed2992a408c7242fce /security/logcheck | |
parent | 2b640a4692e5633993e8d64c5f6eb1e11839453c (diff) | |
download | FreeBSD-ports-21e07ca10e462a7ac2eb0ff25a70b59589e860e8.zip FreeBSD-ports-21e07ca10e462a7ac2eb0ff25a70b59589e860e8.tar.gz |
Respect CC and CFLAGS
Diffstat (limited to 'security/logcheck')
-rw-r--r-- | security/logcheck/files/patch-aa | 17 |
1 files changed, 13 insertions, 4 deletions
diff --git a/security/logcheck/files/patch-aa b/security/logcheck/files/patch-aa index 9b122f8..47b35dd 100644 --- a/security/logcheck/files/patch-aa +++ b/security/logcheck/files/patch-aa @@ -1,14 +1,23 @@ ---- Makefile.orig Sun Oct 31 09:07:29 1999 -+++ Makefile Fri Dec 24 16:37:46 1999 -@@ -5,6 +5,8 @@ +--- Makefile.orig Sun Oct 31 07:07:29 1999 ++++ Makefile Thu Jan 20 09:14:40 2000 +@@ -5,13 +5,15 @@ # Thanks to rbulling@obscure.org for cleaning this Makefile up.. # +SYSTYPE=freebsd + # Generic compiler - CC = cc +- CC = cc ++ CC ?= cc # GNU.. + # CC = gcc + + # Normal systems flags +-CFLAGS = -O ++CFLAGS ?= -O + # Braindead HPUX compiler flags + #CFLAGS = -O -Aa + @@ -35,19 +37,7 @@ # Debug mode for logtail # CFLAGS = -g -DDEBUG |