[Zope-Checkins] SVN: Zope/trunk/ - Collector #1566: Installation of
Zope on some older Solaris versions
Andreas Jung
andreas at andreas-jung.com
Mon Nov 8 01:38:45 EST 2004
Log message for revision 28388:
- Collector #1566: Installation of Zope on some older Solaris versions
could fail due to a broken "echo" implementation causing the
creation of a borked version.txt file.
Changed:
U Zope/trunk/doc/CHANGES.txt
U Zope/trunk/inst/Makefile.in
-=-
Modified: Zope/trunk/doc/CHANGES.txt
===================================================================
--- Zope/trunk/doc/CHANGES.txt 2004-11-07 18:17:41 UTC (rev 28387)
+++ Zope/trunk/doc/CHANGES.txt 2004-11-08 06:38:44 UTC (rev 28388)
@@ -34,6 +34,10 @@
Bugs fixed
+ - Collector #1566: Installation of Zope on some older Solaris versions
+ could fail due to a broken "echo" implementation causing the
+ creation of a borked version.txt file.
+
- Collector #934: Image and File objects are now always internally
split into small chunks even when initialized from a string.
Modified: Zope/trunk/inst/Makefile.in
===================================================================
--- Zope/trunk/inst/Makefile.in 2004-11-07 18:17:41 UTC (rev 28387)
+++ Zope/trunk/inst/Makefile.in 2004-11-08 06:38:44 UTC (rev 28388)
@@ -52,7 +52,7 @@
${RMRF} ${BUILD_BASE}
${BASE_DIR}/lib/python/version.txt:
- echo -n "Zope ${MAJOR_VERSION}.${MINOR_VERSION}-${RELEASE_TAG}" >\
+ printf "Zope ${MAJOR_VERSION}.${MINOR_VERSION}-${RELEASE_TAG}" >\
"${BASE_DIR}/lib/python/version.txt"
# install: Install a software home.
More information about the Zope-Checkins
mailing list