diff options
author | Andrew Tridgell <tridge@samba.org> | 2010-03-17 16:26:12 +1100 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2010-04-06 20:26:51 +1000 |
commit | cb0bf90b1045d68315ce9d7c61cb1493bfb71306 (patch) | |
tree | ead200ccd131bf2660e6bde1881e577e50eec040 /lib | |
parent | 330361aa18201be2bfc414d1cb481a295c07c5a5 (diff) | |
download | samba-cb0bf90b1045d68315ce9d7c61cb1493bfb71306.tar.gz samba-cb0bf90b1045d68315ce9d7c61cb1493bfb71306.tar.bz2 samba-cb0bf90b1045d68315ce9d7c61cb1493bfb71306.zip |
build: don't use -W warning option for developer build
Diffstat (limited to 'lib')
-rw-r--r-- | lib/replace/wscript | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/replace/wscript b/lib/replace/wscript index 8df9c74a81..5fd7027141 100644 --- a/lib/replace/wscript +++ b/lib/replace/wscript @@ -210,7 +210,7 @@ def configure(conf): msg="Checking for C99 vsnprintf") if Options.options.developer: - conf.ADD_CFLAGS('-Wall -g -Wfatal-errors -W -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -Werror-implicit-function-declaration -Wformat=2 -Wno-format-y2k') + conf.ADD_CFLAGS('-Wall -g -Wfatal-errors -Wshadow -Wstrict-prototypes -Wpointer-arith -Wcast-qual -Wcast-align -Wwrite-strings -Werror-implicit-function-declaration -Wformat=2 -Wno-format-y2k') conf.SAMBA_CONFIG_H() conf.SAMBA_BUILD_ENV() |