diff options
author | Steve Hay <SteveHay@planit.com> | 2005-06-14 13:13:17 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-06-14 13:13:17 +0000 |
commit | a6c1bb3f5e9320b43051212aaffdd44856750779 (patch) | |
tree | 19668fb05e1d6de001c5f386ee62628ede6ee0ed /win32 | |
parent | ea8eae4025f3186b92e6e1bfbb28ccfa6dae8a05 (diff) | |
download | perl-a6c1bb3f5e9320b43051212aaffdd44856750779.tar.gz |
Don't delete IO/Zlib during distclean on Win32
(IO/Socket still needs to go, though)
p4raw-id: //depot/perl@24837
Diffstat (limited to 'win32')
-rw-r--r-- | win32/Makefile | 4 | ||||
-rw-r--r-- | win32/makefile.mk | 4 |
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 |