summaryrefslogtreecommitdiffstats
path: root/Lib/distutils/command/bdist_dumb.py
diff options
context:
space:
mode:
authorThomas Heller <theller@ctypes.org>2002-04-09 14:14:38 (GMT)
committerThomas Heller <theller@ctypes.org>2002-04-09 14:14:38 (GMT)
commitfd0e82a38507614a349571604c3050b6642e71e3 (patch)
tree020eb561bbb93c4c57ed8783f4ebca53608288e2 /Lib/distutils/command/bdist_dumb.py
parent1630520e5ce10aaf5769712d39d93bbeedb5b934 (diff)
downloadcpython-fd0e82a38507614a349571604c3050b6642e71e3.zip
cpython-fd0e82a38507614a349571604c3050b6642e71e3.tar.gz
cpython-fd0e82a38507614a349571604c3050b6642e71e3.tar.bz2
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 'Lib/distutils/command/bdist_dumb.py')
-rw-r--r--Lib/distutils/command/bdist_dumb.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/distutils/command/bdist_dumb.py b/Lib/distutils/command/bdist_dumb.py
index b627a86..a135877 100644
--- a/Lib/distutils/command/bdist_dumb.py
+++ b/Lib/distutils/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')