diff options
author | lloyd <[email protected]> | 2013-12-14 15:02:07 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2013-12-14 15:02:07 +0000 |
commit | 815966a9e1c3bec13c20d294fdc4e2aab16a614d (patch) | |
tree | 825d484cdfa6cf34fe424f1fed123b3c385ed56b /configure.py | |
parent | e3f89d3489eea09f7792e88bb283b15332aefbf8 (diff) |
Use -Werror only when --maintainer-mode is set as warnings will sneak
in on platforms/configs I don't test regularly, and that shouldn't
break end-user builds.
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/configure.py b/configure.py index 588c33159..03701dec9 100755 --- a/configure.py +++ b/configure.py @@ -230,7 +230,8 @@ def process_command_line(args): help='set the name of the compiler binary') target_group.add_option('--cc-abi-flags', metavar='FLAG', - help='set compiler ABI flags') + help='set compiler ABI flags', + default='') target_group.add_option('--chost', help=optparse.SUPPRESS_HELP) @@ -1082,9 +1083,10 @@ def create_template_vars(build_config, options, modules, cc, arch, osinfo): def warning_flags(normal_flags, maintainer_flags, maintainer_mode): - if maintainer_mode and maintainer_flags != '': - return maintainer_flags - return normal_flags + if maintainer_mode: + return maintainer_flags + normal_flags + else: + return normal_flags def innosetup_arch(os, arch): if os != 'windows': |