summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorabs <abs>2003-11-11 16:10:36 +0000
committerabs <abs>2003-11-11 16:10:36 +0000
commitb8e5a140efcac5904bc0c89fc2f730f364e10a92 (patch)
tree54fd7700eea67b80e72ebb30af7c9a1077873b24 /lang
parent315f729956f6fcc0f656581ee40a6657bef65ea1 (diff)
downloadpkgsrc-b8e5a140efcac5904bc0c89fc2f730f364e10a92.tar.gz
mawk configure fails with -ffast-math, so add
CFLAGS:= ${CFLAGS:S/-ffast-math//} No change on default builds (without -ffast-math)
Diffstat (limited to 'lang')
-rw-r--r--lang/mawk/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/lang/mawk/Makefile b/lang/mawk/Makefile
index ab266db5d12..4d827a05f5e 100644
--- a/lang/mawk/Makefile
+++ b/lang/mawk/Makefile
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.12 2003/09/30 21:47:14 seb Exp $
+# $NetBSD: Makefile,v 1.13 2003/11/11 16:10:36 abs Exp $
#
DISTNAME= mawk-1.3.3
@@ -14,6 +14,9 @@ TEST_TARGET= mawk_test fpe_test
.include "../../mk/bsd.prefs.mk"
+# mawk configure fails with -ffast-math
+CFLAGS:= ${CFLAGS:S/-ffast-math//}
+
.if ${OPSYS} == "SunOS"
MAKE_ENV+= CPPFLAGS=
.endif