diff options
author | Håkan Mattsson <[email protected]> | 2010-03-05 15:56:02 +0100 |
---|---|---|
committer | Håkan Mattsson <[email protected]> | 2010-04-19 13:17:32 +0200 |
commit | 2846d03cb026ec9f33ea32747b4a231e1239b1ae (patch) | |
tree | e1ef7c8daad4262d496f947def2b47b1c0119a07 /lib/reltool/src/reltool.hrl | |
parent | 067785da7c85152aa8d2436935e77fef3efaaa2d (diff) | |
download | otp-2846d03cb026ec9f33ea32747b4a231e1239b1ae.tar.gz otp-2846d03cb026ec9f33ea32747b4a231e1239b1ae.tar.bz2 otp-2846d03cb026ec9f33ea32747b4a231e1239b1ae.zip |
Improved handling of applications explicitly included releases
Applications that are listed in a release are now
automatically included.
Diffstat (limited to 'lib/reltool/src/reltool.hrl')
-rw-r--r-- | lib/reltool/src/reltool.hrl | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/reltool/src/reltool.hrl b/lib/reltool/src/reltool.hrl index d0a4c77657..b3f06e8753 100644 --- a/lib/reltool/src/reltool.hrl +++ b/lib/reltool/src/reltool.hrl @@ -177,11 +177,11 @@ sorted_dirs :: [dir()], vsn :: app_vsn(), label :: app_label(), - info :: #app_info{} | undefined, + info :: #app_info{} | undefined, mods :: [#mod{}], %% Static source cond - mod_cond :: mod_cond() | undefined, + mod_cond :: mod_cond() | undefined, incl_cond :: incl_cond() | undefined, %% Static target cond @@ -201,7 +201,8 @@ uses_apps :: [app_name()], used_by_apps :: [app_name()], is_pre_included :: boolean(), - is_included :: boolean() + is_included :: boolean(), + rels :: [rel_name()] }). -record(rel_app, |