diff options
author | Garrett Wollman <wollman@FreeBSD.org> | 2002-03-23 00:44:00 +0000 |
---|---|---|
committer | Garrett Wollman <wollman@FreeBSD.org> | 2002-03-23 00:44:00 +0000 |
commit | efbb5e2289b902b0143bc3ae2b98f6d499ee2475 (patch) | |
tree | 42b27fe35653d59f33a678eb942f6d5e1b630fe2 /bin/expr/Makefile | |
parent | 4df161e5122acdff365911731e57e862e87b8c9a (diff) | |
download | src-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/expr/Makefile')
-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 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> |