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