diff options
| author | Thomas Heller <theller@ctypes.org> | 2002-04-09 14:14:38 +0000 |
|---|---|---|
| committer | Thomas Heller <theller@ctypes.org> | 2002-04-09 14:14:38 +0000 |
| commit | ae4a213ef2fb41949998f6087eeb9797cad3ee71 (patch) | |
| tree | e540ab234ba1165e12e68f41e36bfd4f8883bd28 /command/bdist_dumb.py | |
| parent | 2b6ab4d227f851daa1f17389e45bc5456c3211e6 (diff) | |
| download | python-setuptools-git-ae4a213ef2fb41949998f6087eeb9797cad3ee71.tar.gz | |
Set the warn_dir option to 0 before running the install command.
This suppresses bogus warnings about modules installed into a directory
not in sys.path.
Bugfix candidate.
Diffstat (limited to 'command/bdist_dumb.py')
| -rw-r--r-- | command/bdist_dumb.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/command/bdist_dumb.py b/command/bdist_dumb.py index b627a86a..a135877a 100644 --- a/command/bdist_dumb.py +++ b/command/bdist_dumb.py @@ -81,6 +81,7 @@ class bdist_dumb (Command): install = self.reinitialize_command('install', reinit_subcommands=1) install.root = self.bdist_dir install.skip_build = self.skip_build + install.warn_dir = 0 self.announce("installing to %s" % self.bdist_dir) self.run_command('install') |
