[Zope-Checkins] CVS: Zope/inst - configure.py:1.9
Chris McDonough
chrism@zope.com
Thu, 19 Jun 2003 20:19:30 -0400
Update of /cvs-repository/Zope/inst
In directory cvs.zope.org:/tmp/cvs-serv7153/inst
Modified Files:
configure.py
Log Message:
Fix incorrect string interpolation.
=== Zope/inst/configure.py 1.8 => 1.9 ===
--- Zope/inst/configure.py:1.8 Fri Jun 13 12:43:05 2003
+++ Zope/inst/configure.py Thu Jun 19 20:19:29 2003
@@ -120,12 +120,12 @@
--build-base=DIR use DIR to store temporary build files
- --prefix=DIR install Zope files in DIR [%(TARGET_DIR)s]
+ --prefix=DIR install Zope files in DIR [%(PREFIX)s]
By default, 'make install' will install Zope software files in
-'%(target_dir)s' You can specify an alternate location for these
+'%(PREFIX)s' You can specify an alternate location for these
files by using '--prefix', for example: '--prefix=$HOME/zope'.
-""" % ({'program':sys.argv[0], 'TARGET_DIR':TARGET_DIR})
+""" % ({'program':sys.argv[0], 'PREFIX':PREFIX})
)
print usage