gnunnet: halt build if any command fails
authorEneas U de Queiroz <cotequeiroz@gmail.com>
Thu, 6 Oct 2022 13:02:59 +0000 (10:02 -0300)
committerDaniel Golle <daniel@makrotopia.org>
Thu, 6 Oct 2022 22:33:10 +0000 (23:33 +0100)
commit2e75ccbb7d7d620d3ba101927f04732a1455b5af
tree315f6656e57608c710e92b96d624d92c4f12f482
parentfb91f8b7b07e36b4f47f1808badedf7ba3937d3a
gnunnet: halt build if any command fails

There are many places in the packages' install recipes whith multiple
commands being executed in the same shell invocation, separated with a
semicolon (;).  The return status will depend only on the last command
being run.  The same thing happens in loops, where only the last file
will determine the result of the command.

Change the ';' to '&&', and exit the loop if any operation fails.

Signed-off-by: Eneas U de Queiroz <cotequeiroz@gmail.com>
net/gnunet/Makefile