summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>2001-10-27 23:42:51 +0000
committerGurusamy Sarathy <gsar@cpan.org>2001-10-27 23:42:51 +0000
commite79607b0950508a0e8362e204fe3f52249eb984f (patch)
treeffaeb8d13cbd3eb73dae6f3e1519299c773adb3c /win32
parent77c5a2e771c151e5c0cf44a378474fb166dec0b3 (diff)
downloadperl-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.pl2
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
{