aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorGarrett Wollman <wollman@FreeBSD.org>2002-03-23 00:44:00 +0000
committerGarrett Wollman <wollman@FreeBSD.org>2002-03-23 00:44:00 +0000
commitefbb5e2289b902b0143bc3ae2b98f6d499ee2475 (patch)
tree42b27fe35653d59f33a678eb942f6d5e1b630fe2 /bin
parent4df161e5122acdff365911731e57e862e87b8c9a (diff)
downloadsrc-efbb5e2289b902b0143bc3ae2b98f6d499ee2475.tar.gz
src-efbb5e2289b902b0143bc3ae2b98f6d499ee2475.zip
Disable -Werror when building -- the old version of gcc used on IA32 can't
deal with C99 formats.
Notes
Notes: svn path=/head/; revision=92997
Diffstat (limited to 'bin')
-rw-r--r--bin/expr/Makefile2
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/expr/Makefile b/bin/expr/Makefile
index 544853e10a25..739ffce93da3 100644
--- a/bin/expr/Makefile
+++ b/bin/expr/Makefile
@@ -4,4 +4,6 @@ PROG= expr
SRCS= expr.y
YFLAGS=
+NO_WERROR= "GCC can't handle C99 printf formats."
+
.include <bsd.prog.mk>