diff options
author | Anssi Hannula <anssi@xbmc.org> | 2014-05-10 01:51:22 +0300 |
---|---|---|
committer | Anssi Hannula <anssi@xbmc.org> | 2014-05-10 01:53:46 +0300 |
commit | d3de25a4a331571240e9fe648074b3e04d801b32 (patch) | |
tree | 034c0682ae5fc8fda83be4b92b28f94356152ba3 /bootstrap | |
parent | 0ca90288adbbb7b8b3aaed4adbc0e5b0b0a82658 (diff) |
build: make bootstrap script fail properly on failure
If the first command in the bootstrap script fails, exit with non-zero
exit status instead of silently continuing to the next command.
Diffstat (limited to 'bootstrap')
-rwxr-xr-x | bootstrap | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1,3 +1,3 @@ #!/bin/sh -BOOTSTRAP_STANDALONE=1 make -f bootstrap.mk +BOOTSTRAP_STANDALONE=1 make -f bootstrap.mk && BOOTSTRAP_STANDALONE=1 make -f codegenerator.mk |