diff options
author | lloyd <[email protected]> | 2014-02-09 17:02:03 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2014-02-09 17:02:03 +0000 |
commit | 67fe75e50e6526aa3a17f6fb8a1c0e6e22868d13 (patch) | |
tree | 92bb0305142622e73cb7ca4ce2e2201ff9be7acb /configure.py | |
parent | 65ebc0fe2b3a289c094a349a940b2a85bc4813bf (diff) |
Fix compiler ABI flags
Diffstat (limited to 'configure.py')
-rwxr-xr-x | configure.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.py b/configure.py index 4b350742e..855325865 100755 --- a/configure.py +++ b/configure.py @@ -850,7 +850,7 @@ class CompilerInfo(object): """ def mach_abi_link_flags(self, options): def all(): - if options.debug_build: + if options.debug_build and 'all-debug' in self.mach_abi_linking: return 'all-debug' return 'all' |