"nmake clean" fails to clean ext/... because buildext.pl calls
authorGurusamy Sarathy <gsar@cpan.org>
Sat, 27 Oct 2001 23:42:51 +0000 (23:42 +0000)
committerGurusamy Sarathy <gsar@cpan.org>
Sat, 27 Oct 2001 23:42:51 +0000 (23:42 +0000)
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

win32/buildext.pl

index 59935ac..ab4345c 100644 (file)
@@ -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
      {