Skip to content

Commit

Permalink
On Win32, use 'rem>nul' instead of 'rem' as our no-op.
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.perl.org/modules/Module-Build/trunk@4744 50811bd7-b8ce-0310-adc1-d9db26280581
  • Loading branch information
kenahoo committed Feb 19, 2004
1 parent 10ea310 commit 7b10e93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Module/Build/Compat.pm
Expand Up @@ -153,7 +153,7 @@ sub fake_makefile {

my $perl = $args{build_class}->find_perl_interpreter;
my $os_type = $args{build_class}->os_type;
my $noop = ($os_type eq 'Windows' ? 'rem' :
my $noop = ($os_type eq 'Windows' ? 'rem>nul' :
$os_type eq 'VMS' ? 'Continue' :
'true');

Expand Down

0 comments on commit 7b10e93

Please sign in to comment.