Change 14780 by jhi@alpha on 2002/02/20 13:49:44

        NetWare tweak from Ananth Kesari.

Affected files ...

.... //depot/perl/lib/ExtUtils/MakeMaker.pm#83 edit

Differences ...

==== //depot/perl/lib/ExtUtils/MakeMaker.pm#83 (text) ====
Index: perl/lib/ExtUtils/MakeMaker.pm
--- perl/lib/ExtUtils/MakeMaker.pm.~1~  Wed Feb 20 07:00:05 2002
+++ perl/lib/ExtUtils/MakeMaker.pm      Wed Feb 20 07:00:05 2002
@@ -68,7 +68,7 @@
 my $Is_Mac     = $^O eq 'MacOS';
 my $Is_Win32   = $^O eq 'MSWin32';
 my $Is_Cygwin  = $^O eq 'cygwin';
-my $Is_NetWare = $Config{osname} eq 'NetWare'; # $Config{osname} intentional
+my $Is_NetWare = $Config{'osname'} eq 'NetWare'; # Config{'osname'} intentional
 my $Is_BeOS    = $^O =~ /beos/i;    # XXX should this be that loose?
 
 require ExtUtils::MM_Unix;
@@ -84,8 +84,9 @@
     require ExtUtils::MM_MacOS;
 }
 if ($Is_NetWare) {
-    require ExtUtils::MM_NW5;
-    $Is_Win32 = 0;
+       $^O = 'NetWare';
+       require ExtUtils::MM_NW5;
+       $Is_Win32=0;
 }
 if ($Is_Win32) {
     require ExtUtils::MM_Win32;
End of Patch.

Reply via email to