diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-03-29 15:47:15 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-03-29 15:47:15 +0000 |
commit | 0026721a5b588a091ec5fe2016e8d00b8be712ab (patch) | |
tree | 1a5d3b74d02183b213cf8a3755e2b0ed5ec12fde /win32/buildext.pl | |
parent | 333a3a69dbd6af700a859aea53845f0d2115f52f (diff) | |
download | perl-0026721a5b588a091ec5fe2016e8d00b8be712ab.tar.gz |
Make sure buildext.pl finds Errno.pm
p4raw-id: //depot/perlio@9448
Diffstat (limited to 'win32/buildext.pl')
-rw-r--r-- | win32/buildext.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win32/buildext.pl b/win32/buildext.pl index 6e64b91f5e..056361982e 100644 --- a/win32/buildext.pl +++ b/win32/buildext.pl @@ -26,7 +26,7 @@ foreach my $dir (sort keys %ext) my $mmod = -M 'Makefile'; if (!(-f 'Makefile') || $mmod > $dmod) { - print "\nMakefile.PL in $dir ($mmod > $dmod)\n"; + print "\nRunning Makefile.PL in $dir\n"; my $code = system($perl,"-I$here\\..\lib",'Makefile.PL','INSTALLDIRS=perl'); warn "$code from $dir's Makefile.PL" if $code; $mmod = -M 'Makefile'; @@ -47,7 +47,7 @@ foreach my $dir (sort keys %ext) sub find_xs { - if (/^(.*)\.pm$/i) + if (/^(.*)\.pm$/i || /^(.*)_pm.PL$/i) { my $name = $1; return if $name =~ $no; |