On Thu, Oct 8, 2009 at 17:33, Ramsay Jones <ramsay@xxxxxxxxxxxxxxxxxxx> wrote: > 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... -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html