diff options
author | Gurusamy Sarathy <gsar@cpan.org> | 2001-10-27 23:42:51 +0000 |
---|---|---|
committer | Gurusamy Sarathy <gsar@cpan.org> | 2001-10-27 23:42:51 +0000 |
commit | e79607b0950508a0e8362e204fe3f52249eb984f (patch) | |
tree | ffaeb8d13cbd3eb73dae6f3e1519299c773adb3c /win32 | |
parent | 77c5a2e771c151e5c0cf44a378474fb166dec0b3 (diff) | |
download | perl-e79607b0950508a0e8362e204fe3f52249eb984f.tar.gz |
"nmake clean" fails to clean ext/... because buildext.pl calls
system("nmake -nologo", "clean") and there is no executable
called "nmake -nologo"; this used to "work" pre-change#12559 due
to bugs in multiarg system() that have since been fixed
p4raw-link: @12559 on //depot/maint-5.6/perl: c196af81e4de7395bbcca7607214cb47be8a55c0
p4raw-id: //depot/perl@12719
Diffstat (limited to 'win32')
-rw-r--r-- | win32/buildext.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/buildext.pl b/win32/buildext.pl index 59935ac459..ab4345cb3c 100644 --- a/win32/buildext.pl +++ b/win32/buildext.pl @@ -60,7 +60,7 @@ foreach my $dir (sort @ext) if ($targ) { print "Making $targ in $dir\n$make $targ\n"; - system($make,$targ); + system("$make $targ"); } else { |