summaryrefslogtreecommitdiff
path: root/configure.py
diff options
context:
space:
mode:
Diffstat (limited to 'configure.py')
-rwxr-xr-xconfigure.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/configure.py b/configure.py
index 15ea5687cf..38ff742e3a 100755
--- a/configure.py
+++ b/configure.py
@@ -615,6 +615,13 @@ def b(value):
else:
return 'false'
+def B(value):
+ """Returns 1 if value is truthy, 0 otherwise."""
+ if value:
+ return 1
+ else:
+ return 0
+
def pkg_config(pkg):
"""Run pkg-config on the specified package
@@ -1594,6 +1601,7 @@ configure_inspector(output)
# move everything else to target_defaults
variables = output['variables']
del output['variables']
+variables['is_debug'] = B(options.debug)
# make_global_settings for special FIPS linking
# should not be used to compile modules in node-gyp