[Python-checkins] CVS: python/dist/src/Tools/freeze freeze.py

Guido van Rossum guido@cnri.reston.va.us
Fri, 12 Mar 1999 17:07:08 -0500 (EST)


Update of /projects/cvsroot/python/dist/src/Tools/freeze
In directory eric:/projects/python/develop/guido/src/Tools/freeze

Modified Files:
	freeze.py 
Log Message:
Bug submitted by Wayne Knowles, who writes:

   Under Windows, python freeze.py -o hello hello.py
   creates all the correct files in the hello subdirectory, but the 
   Makefile has the directory prefix in it for frozen_extensions.c
   nmake fails because it tries to locate hello/frozen_extensions.c 

(His fix adds a call to os.path.basename() in the appropriate place.)