[Zope-Checkins] CVS: Zope/inst - Makefile.in:1.1.4.6
Fred L. Drake, Jr.
fred@zope.com
Mon, 24 Feb 2003 11:45:20 -0500
Update of /cvs-repository/Zope/inst
In directory cvs.zope.org:/tmp/cvs-serv555
Modified Files:
Tag: new-install-branch
Makefile.in
Log Message:
Reduce repitition of quoting so we always quote the name of the Python
interpreter in the same way.
=== Zope/inst/Makefile.in 1.1.4.5 => 1.1.4.6 ===
--- Zope/inst/Makefile.in:1.1.4.5 Thu Feb 20 17:44:27 2003
+++ Zope/inst/Makefile.in Mon Feb 24 11:45:19 2003
@@ -12,7 +12,7 @@
# change this to your RPM source dir as necessary
RPM_SRC_DIR=${HOME}/software/rpms/Zope
-PYTHON=<<PYTHON>>
+PYTHON="<<PYTHON>>"
TARGET_DIR=<<TARGET_DIR>>
BUILD_DIR=<<BUILD_DIR>>
RM=rm -f
@@ -22,8 +22,8 @@
CD=cd
LN=ln -sf
CP=cp
-INSTALL_COPY="${PYTHON}" inst/install.py
-WRITE_INFILE="${PYTHON}" inst/file_from_infile.py
+INSTALL_COPY=${PYTHON} inst/install.py
+WRITE_INFILE=${PYTHON} inst/file_from_infile.py
.PHONY : clean install uninstall instance links hacklinks untestinst testinst
.PHONY : default
@@ -35,23 +35,23 @@
@echo
build:
- "${PYTHON}" inst/setup.py <<DISTUTILS_OPTS>> build_ext -i
+ ${PYTHON} inst/setup.py <<DISTUTILS_OPTS>> build_ext -i
install: build
- "${PYTHON}" inst/setup.py <<DISTUTILS_OPTS>> install \
+ ${PYTHON} inst/setup.py <<DISTUTILS_OPTS>> install \
--home="${TARGET_DIR}" <<OPT_FLAGS>>
@echo
@echo Zope binaries installed successfully.
@echo Now run \'${TARGET_DIR}/bin/mkzopeinstance\'
instance: build
- "${PYTHON}" bin/mkzopeinstance .
+ ${PYTHON} bin/mkzopeinstance .
# 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}" bin/mkzopeinstance . --inituser=
+ ${PYTHON} bin/mkzopeinstance . --inituser=
# remove the instance files made with testinst (w/ prejudice)
untestinst: