diff options
author | uqs <uqs@FreeBSD.org> | 2010-02-15 14:07:40 +0000 |
---|---|---|
committer | uqs <uqs@FreeBSD.org> | 2010-02-15 14:07:40 +0000 |
commit | 764da0e641e9fca71388f727ed611bbe71d396a4 (patch) | |
tree | 0ec1be21c8a6013f205547c640d8a59780152d52 /sbin/gbde | |
parent | 12d96a648c305fb1eb3f73bffaeab15cb5b6c516 (diff) | |
download | FreeBSD-src-764da0e641e9fca71388f727ed611bbe71d396a4.zip FreeBSD-src-764da0e641e9fca71388f727ed611bbe71d396a4.tar.gz |
Bump WARNS where possible.
Checked by: make universe
Approved by: ed (co-mentor)
Diffstat (limited to 'sbin/gbde')
-rw-r--r-- | sbin/gbde/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/sbin/gbde/Makefile b/sbin/gbde/Makefile index 8705802..0faa6ba 100644 --- a/sbin/gbde/Makefile +++ b/sbin/gbde/Makefile @@ -9,9 +9,7 @@ SRCS+= g_bde_lock.c # rijndael-fst.c does evil casting things which results in warnings on # 64 bit machines, the test-vectors check out however, so it works right. -.if ${MACHINE_ARCH} == "i386" -WARNS?= 5 -.else +.if ${MACHINE_ARCH} != "i386" WARNS?= 3 .endif |