Change 16160 by gsar@zinc-gsar on 2002/04/25 17:04:10
windows build fails if there is no perlglob.exe in the PATH
Affected files ...
.... //depot/perl/win32/buildext.pl#8 edit
Differences ...
==== //depot/perl/win32/buildext.pl#8 (text) ====
Index: perl/win32/buildext.pl
--- perl/win32/buildext.pl.~1~ Thu Apr 25 11:15:05 2002
+++ perl/win32/buildext.pl Thu Apr 25 11:15:05 2002
@@ -28,6 +28,9 @@
{
$perl = "$here\\$perl";
}
+(my $topdir = $perl) =~ s/\\[^\\]+$//;
+$ENV{PATH} = "$topdir;$ENV{PATH}"; # so miniperl can find perlglob.exe
+#print "PATH=$ENV{PATH}\n";
my $make = shift;
$make .= " ".shift while $ARGV[0]=~/^-/;
my $dep = shift;
End of Patch.