diff options
author | tjr <tjr@FreeBSD.org> | 2002-10-01 08:55:28 +0000 |
---|---|---|
committer | tjr <tjr@FreeBSD.org> | 2002-10-01 08:55:28 +0000 |
commit | 508be2d5581de2e2899aa246784c749b9e4ab9d9 (patch) | |
tree | 45dc0030e5d9c1cab49d782d461aa289b29726be /bin/sh | |
parent | b07890219d03ebde66843fb8c43dd7f540177816 (diff) | |
download | FreeBSD-src-508be2d5581de2e2899aa246784c749b9e4ab9d9.zip FreeBSD-src-508be2d5581de2e2899aa246784c749b9e4ab9d9.tar.gz |
Add back WARNS=0 and WFORMAT=0; gcc is finding nonexistent format string
errors with %qd formats.
Diffstat (limited to 'bin/sh')
-rw-r--r-- | bin/sh/Makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/bin/sh/Makefile b/bin/sh/Makefile index 64eb0f0..b707917 100644 --- a/bin/sh/Makefile +++ b/bin/sh/Makefile @@ -21,6 +21,8 @@ LFLAGS= -8 # 8-bit lex scanner for arithmetic CFLAGS+=-DSHELL -I. -I${.CURDIR} # for debug: # CFLAGS+= -g -DDEBUG=2 +WARNS= 0 +WFORMAT=0 .PATH: ${.CURDIR}/bltin \ ${.CURDIR}/../../bin/test |