diff options
author | Siri Hansen <[email protected]> | 2011-03-24 14:35:08 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2011-03-24 14:35:08 +0100 |
commit | 9d6c7c8bf6b170ad1be824a2a3a24a3218c2d1b6 (patch) | |
tree | 0c28321ffc9079a905ba95675ffbb0b8c0ba7d94 /lib/reltool/src/reltool_server.erl | |
parent | c4ba2c49508a02f2eef9624b06a9b91583e70e2c (diff) | |
parent | 11a878bb0c35a47e7ccbc1c0f10194aac49f25a5 (diff) | |
download | otp-9d6c7c8bf6b170ad1be824a2a3a24a3218c2d1b6.tar.gz otp-9d6c7c8bf6b170ad1be824a2a3a24a3218c2d1b6.tar.bz2 otp-9d6c7c8bf6b170ad1be824a2a3a24a3218c2d1b6.zip |
Merge branch 'siri/reltool/app_file-option/OTP-9135' into dev
* siri/reltool/app_file-option/OTP-9135:
Allow app_file option to be keep | strip | all, as documented
Diffstat (limited to 'lib/reltool/src/reltool_server.erl')
-rw-r--r-- | lib/reltool/src/reltool_server.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/reltool/src/reltool_server.erl b/lib/reltool/src/reltool_server.erl index d7cad8b29e..9743289ca6 100644 --- a/lib/reltool/src/reltool_server.erl +++ b/lib/reltool/src/reltool_server.erl @@ -1318,7 +1318,7 @@ decode(#sys{} = Sys, [{Key, Val} | KeyVals], Status) -> Val =:= none; Val =:= undefined -> {Sys#sys{embedded_app_type = Val}, Status}; - app_file when Val =:= keep; Val =:= strip, Val =:= all -> + app_file when Val =:= keep; Val =:= strip; Val =:= all -> {Sys#sys{app_file = Val}, Status}; debug_info when Val =:= keep; Val =:= strip -> {Sys#sys{debug_info = Val}, Status}; |