In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/85741d00cbd04edb73bec2243f2bc99880ce89fd?hp=2d53619e84b23c168ecb5cfd35e6cfb10dd066d0>

- Log -----------------------------------------------------------------
commit 85741d00cbd04edb73bec2243f2bc99880ce89fd
Author: Steve Hay <[email protected]>
Date:   Tue Sep 29 17:51:05 2009 +0100

    Running "mkppport --clean" at the end of "[nd]make distclean" on Win32
    is more trouble than it's worth: it can't find Getopt::Long, constant,
    Pod::Usage or Pod::Text (at least). Just recursively delete all ppport.h
    files instead, given that there aren't any in the distribution.
-----------------------------------------------------------------------

Summary of changes:
 win32/Makefile    |    7 ++-----
 win32/makefile.mk |    7 ++-----
 2 files changed, 4 insertions(+), 10 deletions(-)

diff --git a/win32/Makefile b/win32/Makefile
index e59bbe1..2d23a4d 100644
--- a/win32/Makefile
+++ b/win32/Makefile
@@ -1024,9 +1024,6 @@ $(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) 
$(PERLEXEST_OBJ) $(PERLEXE_RES)
 MakePPPort: $(MINIPERL) $(CONFIGPM) Extensions_nonxs
        $(MINIPERL) -I..\lib $(ICWD) ..\mkppport
 
-MakePPPort_clean:
-       -if exist $(MINIPERL) $(MINIPERL) -I..\lib ..\mkppport --clean
-
 
#-------------------------------------------------------------------------------
 # There's no direct way to mark a dependency on
 # DynaLoader.pm, so this will have to do
@@ -1199,7 +1196,7 @@ distclean: realclean
        -del /f bin\*.bat
        -del /f perllibst.h
        -del /f perl.base
-       -cd .. && del /s *.lib *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib
+       -cd .. && del /s *.lib *.map *.pdb *.ilk *.bs *$(o) .exists pm_to_blib 
ppport.h
        -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
        -cd $(DISTDIR) && del /s *.def Makefile Makefile.old
        -cd $(CPANDIR) && del /s *.def Makefile Makefile.old
@@ -1310,7 +1307,7 @@ _clean :
 
 clean : Extensions_clean _clean
 
-realclean : Extensions_realclean MakePPPort_clean _clean
+realclean : Extensions_realclean _clean
 
 # Handy way to run perlbug -ok without having to install and run the
 # installed perlbug. We don't re-run the tests here - we trust the user.
diff --git a/win32/makefile.mk b/win32/makefile.mk
index 04d7143..cdd17ed 100644
--- a/win32/makefile.mk
+++ b/win32/makefile.mk
@@ -1360,9 +1360,6 @@ $(PERLEXESTATIC): $(PERLSTATICLIB) $(CONFIGPM) 
$(PERLEXEST_OBJ) $(PERLEXE_RES)
 MakePPPort: $(MINIPERL) $(CONFIGPM) Extensions_nonxs
        $(MINIPERL) -I..\lib $(ICWD) ..\mkppport
 
-MakePPPort_clean:
-       -if exist $(MINIPERL) $(MINIPERL) -I..\lib $(ICWD) ..\mkppport --clean
-
 
#-------------------------------------------------------------------------------
 # There's no direct way to mark a dependency on
 # DynaLoader.pm, so this will have to do
@@ -1532,7 +1529,7 @@ distclean: realclean
        -del /f bin\*.bat
        -del /f perllibst.h
        -del /f perl.base
-       -cd .. && del /s *$(a) *.map *.pdb *.ilk *.tds *.bs *$(o) .exists 
pm_to_blib
+       -cd .. && del /s *$(a) *.map *.pdb *.ilk *.tds *.bs *$(o) .exists 
pm_to_blib ppport.h
        -cd $(EXTDIR) && del /s *.def Makefile Makefile.old
        -cd $(DISTDIR) && del /s *.def Makefile Makefile.old
        -cd $(CPANDIR) && del /s *.def Makefile Makefile.old
@@ -1650,7 +1647,7 @@ _clean :
 
 clean : Extensions_clean _clean
 
-realclean : Extensions_realclean MakePPPort_clean _clean
+realclean : Extensions_realclean _clean
 
 # Handy way to run perlbug -ok without having to install and run the
 # installed perlbug. We don't re-run the tests here - we trust the user.

--
Perl5 Master Repository

Reply via email to