Subject: | $! is meaningless in system() |
xsystem() in inc/MyBuilder.pm has the following line
system(@args) == 0 or croak "Failed to system(@args): $!";
But $! is not set on failed system() calls, and prints usually just a random (previous?) error. In my case it is: "No such file or directory". Best to remove the ": $!" bit here.
Regards,
Slaven