diff options
Diffstat (limited to 'Lib/distutils/command/install_ext.py')
-rw-r--r-- | Lib/distutils/command/install_ext.py | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Lib/distutils/command/install_ext.py b/Lib/distutils/command/install_ext.py index ba343d2e42f..016a514e1ec 100644 --- a/Lib/distutils/command/install_ext.py +++ b/Lib/distutils/command/install_ext.py @@ -13,9 +13,10 @@ class install_ext (Command): description = "install C/C++ extension modules" - options = [('install-dir=', 'd', "directory to install to"), - ('build-dir=','b', "build directory (where to install from)"), - ] + user_options = [ + ('install-dir=', 'd', "directory to install to"), + ('build-dir=','b', "build directory (where to install from)"), + ] def set_default_options (self): # let the 'install' command dictate our installation directory |