summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2005-06-14 13:13:17 +0000
committerSteve Hay <SteveHay@planit.com>2005-06-14 13:13:17 +0000
commite2d70dae246b32e1273cd865c13348f6541ec1ce (patch)
tree19668fb05e1d6de001c5f386ee62628ede6ee0ed
parent84c038ace07f27147a50ae3667faa4b9071319b3 (diff)
downloadperl-e2d70dae246b32e1273cd865c13348f6541ec1ce.tar.gz
Don't delete IO/Zlib during distclean on Win32
(IO/Socket still needs to go, though) p4raw-id: //depot/perl@24837
-rw-r--r--win32/Makefile4
-rw-r--r--win32/makefile.mk4
2 files changed, 4 insertions, 4 deletions
diff --git a/win32/Makefile b/win32/Makefile
index 3dfdd9c4e9..67fd3081b9 100644
--- a/win32/Makefile
+++ b/win32/Makefile
@@ -1141,8 +1141,8 @@ distclean: realclean
-del /f $(LIBDIR)\Unicode\Normalize.pm
-del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
-del /f $(LIBDIR)\Win32.pm
- -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO
- -if exist $(LIBDIR)\IO rmdir /s $(LIBDIR)\IO
+ -if exist $(LIBDIR)\IO\Socket rmdir /s /q $(LIBDIR)\IO\Socket
+ -if exist $(LIBDIR)\IO\Socket rmdir /s $(LIBDIR)\IO\Socket
-if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
-if exist $(LIBDIR)\B rmdir /s $(LIBDIR)\B
-if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data
diff --git a/win32/makefile.mk b/win32/makefile.mk
index a338c7d33a..d456ae7947 100644
--- a/win32/makefile.mk
+++ b/win32/makefile.mk
@@ -1287,8 +1287,8 @@ distclean: realclean
-del /f $(LIBDIR)\Unicode\Normalize.pm
-del /f $(LIBDIR)\Math\BigInt\FastCalc.pm
-del /f $(LIBDIR)\Win32.pm
- -if exist $(LIBDIR)\IO rmdir /s /q $(LIBDIR)\IO
- -if exist $(LIBDIR)\IO rmdir /s $(LIBDIR)\IO
+ -if exist $(LIBDIR)\IO\Socket rmdir /s /q $(LIBDIR)\IO\Socket
+ -if exist $(LIBDIR)\IO\Socket rmdir /s $(LIBDIR)\IO\Socket
-if exist $(LIBDIR)\B rmdir /s /q $(LIBDIR)\B
-if exist $(LIBDIR)\B rmdir /s $(LIBDIR)\B
-if exist $(LIBDIR)\Data rmdir /s /q $(LIBDIR)\Data