Commit 4ebfa7fc authored by Andreas Jung's avatar Andreas Jung

- Collector #1259: removed the "uninstall" target from the Makefile

       since the uninstall routine could also remove non-Zope files. Because
       this was to dangerous it has been removed completely. 
parent 9266ec06
......@@ -109,6 +109,10 @@ Zope Changes
Bugs fixed
- Collector #1259: removed the "uninstall" target from the Makefile
since the uninstall routine could also remove non-Zope files. Because
this was to dangerous it has been removed completely.
- Collector #1299: Fixed bug in sequence.sort()
- Collector #1159: Added test for __MACH__ to initgroups.c so the
......
......@@ -32,7 +32,7 @@ CP=cp
TAR=tar
MKDIR=mkdir -p
.PHONY : clean install uninstall instance untestinst testinst build unbuild
.PHONY : clean install instance untestinst testinst build unbuild
.PHONY : default
# default: The default step (invoked when make is called without a target)
......@@ -60,10 +60,6 @@ install: build
@echo Zope binaries installed successfully.
@echo Now run \'${PREFIX}/bin/mkzopeinstance.py\'
# uninstall: Uninstall a software home.
uninstall:
${RMRF} "${PREFIX}"
# inplace: Install a software home into to the source directory.
#
# Note: We used to run 'build_ext -i' for 'inplace', but that was
......
......@@ -31,7 +31,7 @@ CD=cd
XCOPY=xcopy /i /s /e /y
COPY=copy
.PHONY: clean install uninstall build unbuild
.PHONY: clean install build unbuild
.PHONY: default
default: build
......@@ -57,9 +57,6 @@ install: build
@ echo Zope binaries installed successfully.
@ echo Now run '$(PYTHON) $(PREFIX)\bin\mkzopeinstance.py'
# uninstall: Uninstall a software home.
uninstall:
$(RMRF) "$(PREFIX)"
# clean: Delete the build files and any binaries/bytecode files in
# the source directory for good measure.
......
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