diff options
author | Ruslan Ermilov <ru@FreeBSD.org> | 2001-12-12 08:49:51 +0000 |
---|---|---|
committer | Ruslan Ermilov <ru@FreeBSD.org> | 2001-12-12 08:49:51 +0000 |
commit | 7f96dac84dbc6e13b660dd2cdd23c64bf441c176 (patch) | |
tree | 17f8a3dcc5d66f27d362e5b0ad8c2dd9f29ea351 /usr.bin/xinstall/Makefile | |
parent | 341260fb2015d6b4fc4be4ea05e6f59a17c7afd5 (diff) |
More "const" poisoning, and only use NO_WERROR if we're bootstrapping.
Notes
Notes:
svn path=/head/; revision=87724
Diffstat (limited to 'usr.bin/xinstall/Makefile')
-rw-r--r-- | usr.bin/xinstall/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/usr.bin/xinstall/Makefile b/usr.bin/xinstall/Makefile index 0d66aa008fbc..674385bc4ece 100644 --- a/usr.bin/xinstall/Makefile +++ b/usr.bin/xinstall/Makefile @@ -4,12 +4,12 @@ PROG= xinstall PROGNAME= install SRCS= xinstall.c -NO_WERROR= yes MAN= install.1 .if defined(BOOTSTRAPPING) .PATH: ${.CURDIR}/../../lib/libc/gen SRCS+= strtofflags.c +NO_WERROR= yes .endif .include <bsd.prog.mk> |