Commit 7be5e182 authored by Tres Seaver's avatar Tres Seaver

Forward port fix for #2081 ("this time for sure!)"

parent 7d2aaf7b
......@@ -57,13 +57,22 @@ install: version_txt
# 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}
# 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 make instance (w/ prejudice)
# uninstance: Remove the instance files made by testinstance (w/ prejudice)
uninstance:
${RMRF} "${BASE_DIR}/bin"
${RMRF} "${BASE_DIR}/etc"
......@@ -72,16 +81,6 @@ uninstance:
${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:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment