diff options
author | Siri Hansen <[email protected]> | 2011-03-21 17:50:02 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2011-03-21 17:50:02 +0100 |
commit | 11a878bb0c35a47e7ccbc1c0f10194aac49f25a5 (patch) | |
tree | b8d04638c9e7036b76ec412acfb9312c7823fd2c /lib/reltool/src/reltool_server.erl | |
parent | f861b4fdb3fd39e35f2951c53a73b30a98c7f973 (diff) | |
download | otp-11a878bb0c35a47e7ccbc1c0f10194aac49f25a5.tar.gz otp-11a878bb0c35a47e7ccbc1c0f10194aac49f25a5.tar.bz2 otp-11a878bb0c35a47e7ccbc1c0f10194aac49f25a5.zip |
Allow app_file option to be keep | strip | all, as documented
This is the correction of the bug not allowing the values 'strip' or
'all' for the app_file option in reltool.
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}; |