Skip to content

Commit

Permalink
fix win32 check
Browse files Browse the repository at this point in the history
  • Loading branch information
haarg committed May 18, 2017
1 parent a64dcba commit a8d1818
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/ExtUtils/Install.pm
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ Dies with a special message.

BEGIN {
*Is_VMS = $^O eq 'VMS' ? sub(){1} : sub(){0};
*Is_Win32 = $^O eq 'Win32' ? sub(){1} : sub(){0};
*Is_Win32 = $^O eq 'MSWin32' ? sub(){1} : sub(){0};
*Is_cygwin = $^O eq 'cygwin' ? sub(){1} : sub(){0};
*CanMoveAtBoot = ($^O eq 'MSWin32' || $^O eq 'cygwin') ? sub(){1} : sub(){0};
}
Expand Down

1 comment on commit a8d1818

@nanis
Copy link

@nanis nanis commented on a8d1818 May 19, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See Issue #13.

Please sign in to comment.