Renamed all 'options' class attributes to 'user_options'.

This commit is contained in:
Greg Ward 2000-02-18 00:25:39 +00:00
parent 592f28272e
commit bbeceeaf9a
10 changed files with 112 additions and 102 deletions

View file

@ -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