[Zope-Checkins] CVS: Zope/inst - Makefile.in:1.1.2.16
Fred L. Drake, Jr.
fred@zope.com
Fri, 24 Jan 2003 12:26:16 -0500
Update of /cvs-repository/Zope/inst
In directory cvs.zope.org:/tmp/cvs-serv27536/inst
Modified Files:
Tag: chrism-install-branch
Makefile.in
Log Message:
Rename "make_instance.py" to "mkzopeinst.py" to match "mkzeoinst.py" on the
trunk.
=== Zope/inst/Makefile.in 1.1.2.15 => 1.1.2.16 ===
--- Zope/inst/Makefile.in:1.1.2.15 Mon Jan 13 12:14:50 2003
+++ Zope/inst/Makefile.in Fri Jan 24 12:25:44 2003
@@ -76,7 +76,7 @@
${LN} ../../../../var .
# copies to reduce code duplication since both the zope_home installer
-# and the instance_home installer need make_instance, file_from_infile,
+# and the instance_home installer need mkzopeinst, file_from_infile,
# and install
# we can't link these because Python becomes confused about module
# imports if we do so.
@@ -85,26 +85,26 @@
${INSTALL_COPY} ../../file_from_infile.py file_from_infile.py && \
${INSTALL_COPY} ../../install.py install.py && \
${INSTALL_COPY} ../../versions.py versions.py && \
- ${WRITE_INFILE} ../../in/make_instance.py.in make_instance.py
+ ${WRITE_INFILE} ../../in/mkzopeinst.py.in mkzopeinst.py
install: build
${INSTALL_COPY} "${SKEL_DIR}" "${TARGET_DIR}"
- ${WRITE_INFILE} "${INFILE_DIR}/make_instance.py.in" \
- "${TARGET_DIR}/inst/make_instance.py"
+ ${WRITE_INFILE} "${INFILE_DIR}/mkzopeinst.py.in" \
+ "${TARGET_DIR}/inst/mkzopeinst.py"
"${PYTHON}" inst/setup.py install --home="${TARGET_DIR}" ${OPT_FLAGS}
@echo
@echo Zope binaries installed successfully.
- @echo Now run \'${TARGET_DIR}/inst/make_instance.py\'
+ @echo Now run \'${TARGET_DIR}/inst/mkzopeinst.py\'
instance: build
- "${PYTHON}" "${SKEL_DIR}/inst/make_instance.py" \
+ "${PYTHON}" "${SKEL_DIR}/inst/mkzopeinst.py" \
--zopehome="${BUILD_DIR}"
# testinst makes an instance home in the build directory without asking
# any questions. this is useful when testing. instances made with
# this can be removed via "make untestinst"
testinst: build
- "${PYTHON}" "${SKEL_DIR}/inst/make_instance.py" \
+ "${PYTHON}" "${SKEL_DIR}/inst/mkzopeinst.py" \
--zopehome="${BUILD_DIR}" --insthome="${BUILD_DIR}" \
--inituser=
@@ -135,7 +135,7 @@
${RM} "${SKEL_DIR}/utilities"
${RM} "${SKEL_DIR}/bin"
${RM} "${SKEL_DIR}/inst/skel/var"
- ${RM} "${SKEL_DIR}/inst/make_instance.py"
+ ${RM} "${SKEL_DIR}/inst/mkzopeinst.py"
${RM} "${SKEL_DIR}/inst/file_from_infile.py"
${RM} "${SKEL_DIR}/inst/install.py"
${RM} "${SKEL_DIR}/inst/versions.py"