From: Gurusamy Sarathy Date: Sat, 27 Oct 2001 23:42:51 +0000 (+0000) Subject: "nmake clean" fails to clean ext/... because buildext.pl calls X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=e79607b0950508a0e8362e204fe3f52249eb984f;p=p5sagit%2Fp5-mst-13.2.git "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 --- diff --git a/win32/buildext.pl b/win32/buildext.pl index 59935ac..ab4345c 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 {