]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
moved Demo/freeze to Tools/freeze
authorGuido van Rossum <guido@python.org>
Thu, 2 Mar 1995 15:54:21 +0000 (15:54 +0000)
committerGuido van Rossum <guido@python.org>
Thu, 2 Mar 1995 15:54:21 +0000 (15:54 +0000)
Tools/freeze/README
Tools/freeze/freeze.py

index 9ab900f0a753b88747dbd8ea1835e98852dcd34f..fc79320466d3fe8345b97eb74836cae530fe6047 100644 (file)
@@ -75,7 +75,7 @@ Ideally, you should be able to use it as follows:
 
 where hello.py is your program and freeze.py is the main file of
 Freeze (in actuality, you'll probably specify an absolute pathname
-such as /ufs/guido/src/python/Demo/freeze/freeze.py).
+such as /ufs/guido/src/python/Tools/freeze/freeze.py).
 
 Unfortunately, this doesn't work.  Well, it might, but somehow it's
 extremely unlikely that it'll work on the first try.  (If it does,
@@ -107,7 +107,7 @@ How do I configure Freeze?
 
 It's a good idea to change the line marked with XXX in freeze.py (an
 assignment to variable PACK) to point to the absolute pathname of the
-directory where Freeze lives (Demo/freeze in the Python source tree.)
+directory where Freeze lives (Tools/freeze in the Python source tree.)
 This makes it possible to call Freeze from other directories.
 
 You can also edit the assignment to variable PREFIX -- this saves a
index 7d52ccfceaafa30b430ed46bab66c213e84e8c6a..e3c2dddef9084e34ee024a8b42192368d3cca48d 100755 (executable)
@@ -34,8 +34,8 @@ module ...:   Additional Python modules (referenced by pathname)
 """
 
 
-# XXX Change the following line to point to your Demo/freeze directory
-PACK = '/ufs/guido/src/python/Demo/freeze'
+# XXX Change the following line to point to your Tools/freeze directory
+PACK = '/ufs/guido/src/python/Tools/freeze'
 
 # XXX Change the following line to point to your install prefix
 PREFIX = '/usr/local'