diff options
author | Kenji Rikitake <[email protected]> | 2010-02-10 12:40:37 +0000 |
---|---|---|
committer | Erlang/OTP <[email protected]> | 2010-02-10 12:40:37 +0000 |
commit | e7d6097b0f015d5a489ea3a3ad71e064a87c0576 (patch) | |
tree | fe0cf29e7d73ecac5110dd43a6f00d9733bfd6bb /erts/etc | |
parent | c355ba7ddf3d680d1d6c2886e0908aa1d9b8e71c (diff) | |
download | otp-e7d6097b0f015d5a489ea3a3ad71e064a87c0576.tar.gz otp-e7d6097b0f015d5a489ea3a3ad71e064a87c0576.tar.bz2 otp-e7d6097b0f015d5a489ea3a3ad71e064a87c0576.zip |
Change erts/etc/unix/Install.src to explicitly set exit code to 0 at the end of the script
This patch will ensure the Install.src script to exit with the exit code 0
when the execution finished at the end of the script.
Originally from FreeBSD port patch.
Diffstat (limited to 'erts/etc')
-rw-r--r-- | erts/etc/unix/Install.src | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/erts/etc/unix/Install.src b/erts/etc/unix/Install.src index 22357b057f..83f9690782 100644 --- a/erts/etc/unix/Install.src +++ b/erts/etc/unix/Install.src @@ -149,4 +149,4 @@ then ./misc/format_man_pages $ERL_ROOT fi - +exit 0 |