summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMagnus Ahltorp <map@kth.se>2014-09-27 18:35:48 +0200
committerMagnus Ahltorp <map@kth.se>2014-09-27 18:35:48 +0200
commitb93ed6bf66b7ccadd17d5ca0f9bbf14dfd63cb24 (patch)
treeac581acc32b66f990e030f289134b1bf5fa443f5
parent9ffb69e264ebd826f8aa1aa5e1a77b3a4626c106 (diff)
Make each included application in the release explicit
-rw-r--r--reltool.config6
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"}]}
]}.