On Thu, Oct 8, 2009 at 17:33, Ramsay Jones [off-list ref] wrote:
quoted hunk ↗ jump to hunk
diff --git a/compat/vcbuild/scripts/clink.pl b/compat/vcbuild/scripts/clink.pl
index 0ffd59f..26aec61 100644
--- a/compat/vcbuild/scripts/clink.pl
+++ b/compat/vcbuild/scripts/clink.pl
@@ -45,4 +45,6 @@ if ($is_linking) { push(@args, @cflags);
}
#printf("**** @args\n");
-exit system(@args);
+system(@args) == 0
+ or exit 1;
+exit 0;
exit(system(@args) != 0);
Yours looks a little verbose...