diff options
author | Anders Svensson <[email protected]> | 2014-03-27 16:53:30 +0100 |
---|---|---|
committer | Anders Svensson <[email protected]> | 2014-03-30 13:41:37 +0200 |
commit | 9feffa030c4d1791f76e5b57658945c013df636d (patch) | |
tree | 41fe01ee4ca6d28f45f2694491e99b2de4591707 | |
parent | c9b28ca4c52aa7a76092e1b7b85f69e0dd7b9231 (diff) | |
download | otp-9feffa030c4d1791f76e5b57658945c013df636d.tar.gz otp-9feffa030c4d1791f76e5b57658945c013df636d.tar.bz2 otp-9feffa030c4d1791f76e5b57658945c013df636d.zip |
Remove syntax_tools and runtime_tools from app file
The former is used by the dictionary compiler, the latter by some
unfinished code in diameter_dbg. None of the corresponding modules are
included in the app file since they typically aren't needed/wanted on a
target system.
-rw-r--r-- | lib/diameter/src/diameter.app.src | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/diameter/src/diameter.app.src b/lib/diameter/src/diameter.app.src index d2290aeccc..4ede488b31 100644 --- a/lib/diameter/src/diameter.app.src +++ b/lib/diameter/src/diameter.app.src @@ -34,6 +34,9 @@ ]}, {env, []}, {mod, {diameter_app, []}}, - {runtime_dependencies, ["syntax_tools-1.6.14","stdlib-2.0","ssl-5.3.4", - "runtime_tools-1.8.14","kernel-3.0","erts-6.0"]} + {runtime_dependencies, ["erts-6.0", + "kernel-3.0", + "stdlib-2.0", + "ssl-5.3.4"]} + %% Note that ssl is only required if configured on TCP transports. ]}. |