diff options
author | Dan Gudmundsson <[email protected]> | 2017-09-27 16:00:42 +0200 |
---|---|---|
committer | Dan Gudmundsson <[email protected]> | 2017-09-28 11:38:28 +0200 |
commit | 52ca88f1c23657713946e22e0910f2cb7f2f601e (patch) | |
tree | 3bafc59343b0a2b615040dc0b9e1728f1d8b5634 /lib/reltool/src/reltool.hrl | |
parent | ee0da31d00a7bd3375b66cf905cb2811d868f21b (diff) | |
download | otp-52ca88f1c23657713946e22e0910f2cb7f2f601e.tar.gz otp-52ca88f1c23657713946e22e0910f2cb7f2f601e.tar.bz2 otp-52ca88f1c23657713946e22e0910f2cb7f2f601e.zip |
reltool: Add no_dot_erlang bootfiles
Needed by escript and tools
Diffstat (limited to 'lib/reltool/src/reltool.hrl')
-rw-r--r-- | lib/reltool/src/reltool.hrl | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/reltool/src/reltool.hrl b/lib/reltool/src/reltool.hrl index 9c8aae6b7e..d133762818 100644 --- a/lib/reltool/src/reltool.hrl +++ b/lib/reltool/src/reltool.hrl @@ -220,7 +220,8 @@ { name :: rel_name(), vsn :: rel_vsn(), - rel_apps :: [#rel_app{}] + rel_apps :: [#rel_app{}], + load_dot_erlang = true :: boolean() }). -record(sys, @@ -300,6 +301,7 @@ -define(STANDALONE_INCL_SYS_FILTERS, ["^bin/(erl|epmd)(|\\.exe|\\.ini)\$", "^bin/start(|_clean).boot\$", + "^bin/no_dot_erlang\\.boot\$", "^erts.*/bin", "^lib\$"]). -define(STANDALONE_EXCL_SYS_FILTERS, |