diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-15 14:22:38 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-01-15 14:22:38 +0000 |
commit | deb876356543436fa19654cd3662289a45fa3b69 (patch) | |
tree | 5fafc5a2155b27c1785681df274d7276d8f2a672 /lib | |
parent | fc4dc83c520596241646c6a1191e1266e65be5e2 (diff) | |
download | perl-deb876356543436fa19654cd3662289a45fa3b69.tar.gz |
NetWare tweak from Ananth Kesari.
p4raw-id: //depot/perl@14276
Diffstat (limited to 'lib')
-rw-r--r-- | lib/ExtUtils/MakeMaker.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/ExtUtils/MakeMaker.pm b/lib/ExtUtils/MakeMaker.pm index 684bea30fe..f7aec61ff7 100644 --- a/lib/ExtUtils/MakeMaker.pm +++ b/lib/ExtUtils/MakeMaker.pm @@ -71,7 +71,7 @@ $Is_OS2 = $^O eq 'os2'; $Is_Mac = $^O eq 'MacOS'; $Is_Win32 = $^O eq 'MSWin32'; $Is_Cygwin = $^O eq 'cygwin'; -$Is_NetWare = $^O eq 'NetWare'; +$Is_NetWare = $Config{'osname'} eq 'NetWare'; require ExtUtils::MM_Unix; @@ -87,6 +87,7 @@ if ($Is_Mac) { } if ($Is_NetWare) { require ExtUtils::MM_NW5; + $Is_Win32 = 0; } if ($Is_Win32) { require ExtUtils::MM_Win32; |