diff options
author | obrien <obrien@FreeBSD.org> | 2003-05-02 06:24:51 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2003-05-02 06:24:51 +0000 |
commit | 62a652dc4492a18c86ae1baa8864deeffef12e2a (patch) | |
tree | e86971a2e2e54e73f206e1e4edc1d78d250fa7ef /bin | |
parent | dfdb8ebb84e8b1457a59e2b32778a7e8958d8363 (diff) | |
download | FreeBSD-src-62a652dc4492a18c86ae1baa8864deeffef12e2a.zip FreeBSD-src-62a652dc4492a18c86ae1baa8864deeffef12e2a.tar.gz |
The is_name and is_in_name macros are FUBAR'ed.
Due to the use of signed vs. unsigned chars on our various platforms, one gets
"warning: comparison is always true due to limited range of data type"
from GCC 3.3.
Diffstat (limited to 'bin')
-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 |