In perl.git, the branch blead has been updated

<http://perl5.git.perl.org/perl.git/commitdiff/3bef022b1cf74e180ad95e473e0ef94a3d7c4fe2?hp=2926a53ca63a695a670f946c6ec92145e231813c>

- Log -----------------------------------------------------------------
commit 3bef022b1cf74e180ad95e473e0ef94a3d7c4fe2
Author: Tony Cook <t...@develop-help.com>
Date:   Fri Jan 21 19:11:57 2011 +1100

    depend on files needed for porting/buildtoc.t

M       win32/Makefile
M       win32/makefile.mk

commit 32ebae074951868ad97e0845de57429b08a9ab7b
Author: Tony Cook <t...@develop-help.com>
Date:   Fri Jan 21 19:03:36 2011 +1100

    quote the pod filename used in the regexp to avoid \ issues on Win32

M       pod/buildtoc
-----------------------------------------------------------------------

Summary of changes:
 pod/buildtoc      |    2 +-
 win32/Makefile    |    2 +-
 win32/makefile.mk |    2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/pod/buildtoc b/pod/buildtoc
index c85db57..cc105a0 100644
--- a/pod/buildtoc
+++ b/pod/buildtoc
@@ -434,7 +434,7 @@ sub podset {
            $_ = <$fh>;
            # Remove svn keyword expansions from the Perl FAQ
            s/ \(\$Revision: \d+ \$\)//g;
-           if ( /^\s*$pod\b/ ) {
+           if ( /^\s*\Q$pod\E\b/ ) {
                s/$pod\.pm/$pod/;       # '.pm' in NAME !?
                output $_;
            } else {
diff --git a/win32/Makefile b/win32/Makefile
index 9553f2c..011ca00 100644
--- a/win32/Makefile
+++ b/win32/Makefile
@@ -1214,7 +1214,7 @@ minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) utils 
$(UNIDATAFILES)
        cd ..\t && \
        $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t op/*.t 
pragma/*.t
 
-test-prep : all utils
+test-prep : all utils ../pod/perltoc.pod
        $(XCOPY) $(PERLEXE) ..\t\$(NULL)
        $(XCOPY) $(PERLDLL) ..\t\$(NULL)
        $(XCOPY) $(GLOBEXE) ..\t\$(NULL)
diff --git a/win32/makefile.mk b/win32/makefile.mk
index 8b01c73..dbe56cf 100644
--- a/win32/makefile.mk
+++ b/win32/makefile.mk
@@ -1603,7 +1603,7 @@ minitest : $(MINIPERL) $(GLOBEXE) $(CONFIGPM) 
$(UNIDATAFILES) utils
        cd ..\t && \
        $(MINIPERL) -I..\lib harness base/*.t comp/*.t cmd/*.t io/*.t op/*.t 
pragma/*.t
 
-test-prep : all utils
+test-prep : all utils ..\pod\perltoc.pod
        $(XCOPY) $(PERLEXE) ..\t\$(NULL)
        $(XCOPY) $(PERLDLL) ..\t\$(NULL)
 .IF "$(CCTYPE)" == "BORLAND"

--
Perl5 Master Repository

Reply via email to