[Python-checkins] python/dist/src/Lib/distutils/command bdist_dumb.py,1.18,1.19 bdist_wininst.py,1.30,1.31

theller@sourceforge.net theller@sourceforge.net
Tue, 09 Apr 2002 07:14:41 -0700


Update of /cvsroot/python/python/dist/src/Lib/distutils/command
In directory usw-pr-cvs1:/tmp/cvs-serv17863

Modified Files:
	bdist_dumb.py bdist_wininst.py 
Log Message:
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.


Index: bdist_dumb.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/bdist_dumb.py,v
retrieving revision 1.18
retrieving revision 1.19
diff -C2 -d -r1.18 -r1.19
*** bdist_dumb.py	31 Jan 2002 18:55:59 -0000	1.18
--- bdist_dumb.py	9 Apr 2002 14:14:38 -0000	1.19
***************
*** 82,85 ****
--- 82,86 ----
          install.root = self.bdist_dir
          install.skip_build = self.skip_build
+         install.warn_dir = 0
  
          self.announce("installing to %s" % self.bdist_dir)

Index: bdist_wininst.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/distutils/command/bdist_wininst.py,v
retrieving revision 1.30
retrieving revision 1.31
diff -C2 -d -r1.30 -r1.31
*** bdist_wininst.py	21 Mar 2002 23:44:01 -0000	1.30
--- bdist_wininst.py	9 Apr 2002 14:14:38 -0000	1.31
***************
*** 99,102 ****
--- 99,103 ----
          install.root = self.bdist_dir
          install.skip_build = self.skip_build
+         install.warn_dir = 0
  
          install_lib = self.reinitialize_command('install_lib')