diff options
author | Björn Jacke <bj@sernet.de> | 2012-10-30 11:48:25 +0100 |
---|---|---|
committer | Bjoern Jacke <bj@sernet.de> | 2012-10-30 13:18:50 +0100 |
commit | 7fcb2532b99ddf65d78dd02ea06ce8a1a6229949 (patch) | |
tree | 60a0946310735669eb03d572a36d608dded2f65c /lib | |
parent | 51692042d9f898c5e8f1cbc78031e37d23ec032a (diff) | |
download | samba-7fcb2532b99ddf65d78dd02ea06ce8a1a6229949.tar.gz samba-7fcb2532b99ddf65d78dd02ea06ce8a1a6229949.tar.bz2 samba-7fcb2532b99ddf65d78dd02ea06ce8a1a6229949.zip |
wafbuild: reorder the Werror checks so that the ambigous w2 option is being checked last
Diffstat (limited to 'lib')
-rw-r--r-- | lib/replace/wscript | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/replace/wscript b/lib/replace/wscript index 8d97f5b234..9a6be208de 100644 --- a/lib/replace/wscript +++ b/lib/replace/wscript @@ -54,7 +54,11 @@ struct foo bar = { .y = 'X', .x = 1 }; break # Try to find the right extra flags for -Werror behaviour - for f in ["-Werror", "-w2", "-errwarn=%all", "-qhalt=w"]: + for f in ["-Werror", # GCC + "-errwarn=%all", # Sun Studio + "-qhalt=w", # IBM xlc + "-w2", # Tru64 + ]: if conf.CHECK_CFLAGS([f], ''' '''): if not 'WERROR_CFLAGS' in conf.env: |