kumquat-buildroot/package/eudev
Carlos Santos 3f568fe099 eudev: fix error handling init script
Replace (echo "msg" && exit 1) by { echo "msg"; exit 1; }.

The (list) compound command runs in a subshell, so the "exit" interrupts
the subshell, not the main script. Examples:

    $ sh -c "echo 1; (exit 1); echo 2"
    1
    2
    $ sh -c "echo 1; { exit 1; }; echo 2"
    1
    $

Signed-off-by: Carlos Santos <casantos@datacom.ind.br>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
2018-01-30 22:58:00 +01:00
..
0001-Only-use-pragma-for-ignoring-diagnostics-if-.patch
Config.in
eudev.hash package/eudev: bump version to 3.2.5 2017-11-25 13:21:32 +01:00
eudev.mk package/eudev: bump version to 3.2.5 2017-11-25 13:21:32 +01:00
S10udev eudev: fix error handling init script 2018-01-30 22:58:00 +01:00