[Zope-Checkins] SVN: Zope/trunk/ - Collector #1259: removed the
"uninstall" target from the Makefile
Andreas Jung
andreas at andreas-jung.com
Wed May 12 14:01:15 EDT 2004
Log message for revision 24596:
- 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.
-=-
Modified: Zope/trunk/doc/CHANGES.txt
===================================================================
--- Zope/trunk/doc/CHANGES.txt 2004-05-12 17:54:06 UTC (rev 24595)
+++ Zope/trunk/doc/CHANGES.txt 2004-05-12 18:01:15 UTC (rev 24596)
@@ -109,6 +109,10 @@
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
Modified: Zope/trunk/inst/Makefile.in
===================================================================
--- Zope/trunk/inst/Makefile.in 2004-05-12 17:54:06 UTC (rev 24595)
+++ Zope/trunk/inst/Makefile.in 2004-05-12 18:01:15 UTC (rev 24596)
@@ -32,7 +32,7 @@
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 @@
@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
Modified: Zope/trunk/inst/Makefile.win.in
===================================================================
--- Zope/trunk/inst/Makefile.win.in 2004-05-12 17:54:06 UTC (rev 24595)
+++ Zope/trunk/inst/Makefile.win.in 2004-05-12 18:01:15 UTC (rev 24596)
@@ -31,7 +31,7 @@
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 @@
@ 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.
More information about the Zope-Checkins
mailing list