diff options
author | Siri Hansen <[email protected]> | 2012-03-20 14:38:50 +0100 |
---|---|---|
committer | Siri Hansen <[email protected]> | 2012-03-20 14:45:29 +0100 |
commit | 5e575f65629f6d99ed423bc646219c162f6bfa1a (patch) | |
tree | 55d112760d20070d2a8fcc2f59a03c5007ba8697 /lib/sasl/src/systools.hrl | |
parent | 700e7ee884e3ae19a43a05e8a24f90ab703e6890 (diff) | |
download | otp-5e575f65629f6d99ed423bc646219c162f6bfa1a.tar.gz otp-5e575f65629f6d99ed423bc646219c162f6bfa1a.tar.bz2 otp-5e575f65629f6d99ed423bc646219c162f6bfa1a.zip |
Avoid undefined start_phases entry in .script
Inorder to align with reltool a {start_phases,undefined} entry in will
no longer occur in the application specification in .script files. The
start_phases entry will only exist if it contains real start phases.
Also, the default value for #application.start_phases is no longer set
to [] in systools.hrl. This value was actually never used, since it
was always explicitly set in systools_make:parse_applications - by
default to 'undefined', so the default value in the record definition
was only a confusing detail. Anyway - now corrected.
Diffstat (limited to 'lib/sasl/src/systools.hrl')
-rw-r--r-- | lib/sasl/src/systools.hrl | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/sasl/src/systools.hrl b/lib/sasl/src/systools.hrl index 9a3e98221c..da531dbee5 100644 --- a/lib/sasl/src/systools.hrl +++ b/lib/sasl/src/systools.hrl @@ -1,7 +1,7 @@ %% %% %CopyrightBegin% %% -%% Copyright Ericsson AB 1996-2009. All Rights Reserved. +%% Copyright Ericsson AB 1996-2012. All Rights Reserved. %% %% The contents of this file are subject to the Erlang Public License, %% Version 1.1, (the "License"); you may not use this file except in @@ -60,7 +60,8 @@ %% integer() | infinity. mod = [], %% [] | {Mod, StartArgs}, Mod= atom(), %% StartArgs = list(). - start_phases = [], %% [] | {Phase, PhaseArgs}, Phase = atom(), + start_phases, %% [{Phase, PhaseArgs}] | undefined, + %% Phase = atom(), %% PhaseArgs = list(). dir = "" %% The directory where the .app file was %% found (internal use). |