diff options
author | obrien <obrien@FreeBSD.org> | 2001-12-04 01:57:47 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2001-12-04 01:57:47 +0000 |
commit | 099f8ecbe9e998c7d18349a9429e95b060ef3082 (patch) | |
tree | 46fa80addd858339c663ba48aaca464400ef1d99 /bin/cp | |
parent | de55179b2946bde78ac016ba73aeae91e909d830 (diff) | |
download | FreeBSD-src-099f8ecbe9e998c7d18349a9429e95b060ef3082.zip FreeBSD-src-099f8ecbe9e998c7d18349a9429e95b060ef3082.tar.gz |
Default to WARNS=2. Binary builds that cannot handle this must explicitly
set WARNS=0.
Reviewed by: mike
Diffstat (limited to 'bin/cp')
-rw-r--r-- | bin/cp/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/bin/cp/Makefile b/bin/cp/Makefile index 1b0037f..7108f71 100644 --- a/bin/cp/Makefile +++ b/bin/cp/Makefile @@ -3,6 +3,7 @@ PROG= cp SRCS= cp.c utils.c -CFLAGS+= -W -DVM_AND_BUFFER_CACHE_SYNCHRONIZED +CFLAGS+= -DVM_AND_BUFFER_CACHE_SYNCHRONIZED +WARNS= 0 .include <bsd.prog.mk> |