aboutsummaryrefslogtreecommitdiffstats
path: root/configure.py
diff options
context:
space:
mode:
authorlloyd <[email protected]>2014-02-09 17:02:03 +0000
committerlloyd <[email protected]>2014-02-09 17:02:03 +0000
commit67fe75e50e6526aa3a17f6fb8a1c0e6e22868d13 (patch)
tree92bb0305142622e73cb7ca4ce2e2201ff9be7acb /configure.py
parent65ebc0fe2b3a289c094a349a940b2a85bc4813bf (diff)
Fix compiler ABI flags
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py2
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'