[Zope-Checkins] SVN: Zope/trunk/inst/Makefile.in Forward port fix
for #2081 ("this time for sure!)"
Tres Seaver
tseaver at palladion.com
Wed May 10 13:45:07 EDT 2006
Log message for revision 68083:
Forward port fix for #2081 ("this time for sure!)"
Changed:
U Zope/trunk/inst/Makefile.in
-=-
Modified: Zope/trunk/inst/Makefile.in
===================================================================
--- Zope/trunk/inst/Makefile.in 2006-05-10 17:38:17 UTC (rev 68082)
+++ Zope/trunk/inst/Makefile.in 2006-05-10 17:45:07 UTC (rev 68083)
@@ -57,13 +57,22 @@
# inplace: Do an in-place build
inplace: build
+# test: Do an inplace build and run the Zope test suite.
+test: inplace
+ ${PYTHON} "${BASE_DIR}/test.py" ${TESTOPTS}
+
# instance: Do an inplace build and create an instance home in the resulting
# software home.
instance: build
- ${PYTHON} "${BASE_DIR}/utilities/mkzopeinstance.py" ${MKZ_FLAGS} \
- --dir="${BASE_DIR}"
+ ${PYTHON} "${BASE_DIR}/utilities/mkzopeinstance.py" ${MKZ_FLAGS}
-# uninstance: Remove the instance files made by make instance (w/ prejudice)
+# testinst: Perform an inplace build and create an instance home in the
+# resulting software home without asking questions. Useful when
+# performing automated testing.
+testinst: MKZ_FLAGS=--user=admin:admin --dir="${BASE_DIR}"
+testinst: instance
+
+# uninstance: Remove the instance files made by testinstance (w/ prejudice)
uninstance:
${RMRF} "${BASE_DIR}/bin"
${RMRF} "${BASE_DIR}/etc"
@@ -72,16 +81,6 @@
${RMRF} "${BASE_DIR}/var"
${RMRF} "${BASE_DIR}/Products"
-# testinst: Perform an inplace build and create an instance home in the
-# resulting software home without asking questions. Useful when
-# performing automated testing.
-testinst: MKZ_FLAGS=--user=admin:admin
-testinst: instance
-
-# test: Do an inplace build and run the Zope test suite.
-test: inplace
- ${PYTHON} "${BASE_DIR}/test.py" ${TESTOPTS}
-
# clean: Delete the build files and any binaries/bytecode files in
# the source directory for good measure.
clean:
More information about the Zope-Checkins
mailing list