[Zope-Checkins] CVS: Zope/inst - Makefile.in:1.15

Chris McDonough chrism@zope.com
Sun, 13 Jul 2003 20:48:04 -0400


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

Modified Files:
	Makefile.in 
Log Message:
Dont write trailing newline into version.txt (causes problems because the version.txt is injected into a header sent from Zope and the newline causes Apache proxies to choke).


=== Zope/inst/Makefile.in 1.14 => 1.15 ===
--- Zope/inst/Makefile.in:1.14	Fri Jun 27 16:06:07 2003
+++ Zope/inst/Makefile.in	Sun Jul 13 20:47:58 2003
@@ -115,8 +115,8 @@
 # sdist_tgz:   Create a tgz archive file as a source distribution.
 #
 sdist_tgz:
-	echo Zope ${MAJOR_VERSION}.${MINOR_VERSION}-${RELEASE_TAG} \
-          > "${BASE_DIR}/lib/python/version.txt"
+	echo -n "Zope ${MAJOR_VERSION}.${MINOR_VERSION}-${RELEASE_TAG}" >\
+          "${BASE_DIR}/lib/python/version.txt"
 	${MKDIR} ${TMPDIR}
 	${CD} ${TMPDIR} && ${LN} ${BASE_DIR} ${PACKAGE_NAME} && \
           ${TAR} czfh ${BASE_DIR}/${PACKAGE_NAME}.tar.gz ${PACKAGE_NAME} \