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
if ($targ)
{
print "Making $targ in $dir\n$make $targ\n";
- system($make,$targ);
+ system("$make $targ");
}
else
{