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
commite01e7e095ae56f18e3f1fba97c9eaa56e55b704f (patch)
tree54fd7700eea67b80e72ebb30af7c9a1077873b24 /lang
parentaa9b0aba7fd164b7ab448f2b3c571b5fc5effb47 (diff)
downloadpkgsrc-e01e7e095ae56f18e3f1fba97c9eaa56e55b704f.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