Commit 32462001 authored by Greg Ward's avatar Greg Ward

Added 'debug' option (just there for 'build_ext' and 'build_lib' commands

to fallback to if the user doesn't set it for those commands.
parent 386b8443
......@@ -20,6 +20,8 @@ class Build (Command):
"directory for platform-shared files"),
('build-platlib=', 'p',
"directory for platform-specific files"),
('debug', 'g',
"compile extensions and libraries with debugging information"),
]
def set_default_options (self):
......@@ -28,6 +30,7 @@ class Build (Command):
# (unless overridden by the user or client)
self.build_lib = None
self.build_platlib = None
self.debug = None
def set_final_options (self):
# 'build_lib' and 'build_platlib' just default to 'lib' and
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment