diff options
author | wollman <wollman@FreeBSD.org> | 2002-03-23 00:44:00 +0000 |
---|---|---|
committer | wollman <wollman@FreeBSD.org> | 2002-03-23 00:44:00 +0000 |
commit | 7282a3b32e9f11f640da18f8a131047db40dbc7b (patch) | |
tree | 42b27fe35653d59f33a678eb942f6d5e1b630fe2 /bin | |
parent | ac2fb91ee4ed29b4cfdaecf2950d3cfa6fcd05ac (diff) | |
download | FreeBSD-src-7282a3b32e9f11f640da18f8a131047db40dbc7b.zip FreeBSD-src-7282a3b32e9f11f640da18f8a131047db40dbc7b.tar.gz |
Disable -Werror when building -- the old version of gcc used on IA32 can't
deal with C99 formats.
Diffstat (limited to 'bin')
-rw-r--r-- | bin/expr/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/expr/Makefile b/bin/expr/Makefile index 544853e..739ffce 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> |