[Zope-Checkins] CVS: Zope/inst - configure.py:1.1.4.4

Fred L. Drake, Jr. fred@zope.com
Fri, 21 Feb 2003 11:57:47 -0500


Update of /cvs-repository/Zope/inst
In directory cvs.zope.org:/tmp/cvs-serv13477/inst

Modified Files:
      Tag: new-install-branch
	configure.py 
Log Message:
To avoid some CVS limitations, generate the make rules to the file "makefile"
instead of "Makefile".  This works for GNU make and is expected to work for
Solaris make (based on reading the man page).


=== Zope/inst/configure.py 1.1.4.3 => 1.1.4.4 ===
--- Zope/inst/configure.py:1.1.4.3	Fri Feb 14 12:57:33 2003
+++ Zope/inst/configure.py	Fri Feb 21 11:57:47 2003
@@ -81,7 +81,7 @@
         }
     for k,v in idata.items():
         MAKEFILE = MAKEFILE.replace(k, v)
-    f = open(os.path.join(BUILD_DIR, 'Makefile'), 'w')
+    f = open(os.path.join(BUILD_DIR, 'makefile'), 'w')
     f.write(MAKEFILE)
     print "  - Makefile written."
     print