diff options
author | Magnus Ahltorp <map@kth.se> | 2014-09-27 18:35:48 +0200 |
---|---|---|
committer | Linus Nordberg <linus@nordberg.se> | 2014-10-08 15:39:30 +0200 |
commit | b0766332d2be4272a8d8065de684c61f1ad15c4d (patch) | |
tree | 1c9736ab4def74aed1dd2c0975e96accf8f0e54c | |
parent | 02cf1b6d6c217b12157dc7ae662046e2319f316c (diff) |
Make each included application in the release explicit
-rw-r--r-- | reltool.config | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/reltool.config b/reltool.config index 434345c..80b374d 100644 --- a/reltool.config +++ b/reltool.config @@ -1,6 +1,5 @@ %% -*- mode: erlang -*- {sys, [ - {lib_dirs, [".."]}, {erts, [{mod_cond, derived}, {app_file, strip}]}, {app_file, strip}, {rel, "catlfish", "0.2.0-dev", @@ -12,6 +11,7 @@ ]}, {boot_rel, "catlfish"}, {excl_archive_filters, ["^include$","^priv$","^\\.git$"]}, - {app, catlfish, [{app_file, all}]} -%% {app, plop, [{mod_cond, app}, {incl_cond, include}, {lib_dir, "../plop"}]} + {app, catlfish, [{app_file, all}, {lib_dir, "."}]}, + {app, plop, [{app_file, all}, {lib_dir, "../plop"}]}, + {app, jiffy, [{app_file, all}, {lib_dir, "../jiffy"}]} ]}. |