On Mon, 19 Jun 2017 12:08:35 -0400 (EDT)
Markus Elfring <invalid.nore...@gnu.org> wrote:
> The semicolon indicates at the end that the return value is ignored
> there. I imagine that further data processing should usually only be
> performed if this command succeeded.
> Would you like to improve the exception handling for such a situation?

If you really think that is a bug you should file that bug to the writers
of the shell. Make calls commands in a shell and the result is as in the
shell.

Try the following at your shell prompt:

true && echo everything is fine
echo $?
false && echo evertyhing is fine
echo $?
false ; echo everything is fine
echo $?

regards Henrik

_______________________________________________
Bug-make mailing list
Bug-make@gnu.org
https://lists.gnu.org/mailman/listinfo/bug-make

Reply via email to