aboutsummaryrefslogtreecommitdiff
path: root/Mk/bsd.port.mk
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2007-02-19 22:31:31 +0000
committerPav Lucistnik <pav@FreeBSD.org>2007-02-19 22:31:31 +0000
commit107532bd4dfbb43814b2c2f9045b2cccb6aa5d24 (patch)
treee2cfab702992bedd56da847c108dd8f00e9cae4d /Mk/bsd.port.mk
parentfbb0c698e862288bfcd6ef01f0fba902afcb7d81 (diff)
downloadports-107532bd4dfbb43814b2c2f9045b2cccb6aa5d24.tar.gz
ports-107532bd4dfbb43814b2c2f9045b2cccb6aa5d24.zip
- Correct recently added WITH_DEBUG knob to not overzealously eat all -f
starting cflags, but only -fno-strict-aliasing, thus not going beyond the point of negating the default CFLAGS Reported by: Sean McNeil <sean@mcneil.com>
Notes
Notes: svn path=/head/; revision=185539
Diffstat (limited to 'Mk/bsd.port.mk')
-rw-r--r--Mk/bsd.port.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index b7e6cac71fe2..12a0d7245615 100644
--- a/Mk/bsd.port.mk
+++ b/Mk/bsd.port.mk
@@ -1646,7 +1646,7 @@ CFLAGS:= ${CFLAGS:C/${_CPUCFLAGS}//}
STRIP= #none
STRIP_CMD= #none
DEBUG_FLAGS?= -g
-CFLAGS:= ${CFLAGS:N-O*:N-f*} ${DEBUG_FLAGS}
+CFLAGS:= ${CFLAGS:N-O*:N-fno-strict*} ${DEBUG_FLAGS}
.endif
.if defined(NOPORTDOCS)