diff options
author | Tristan Sloughter <[email protected]> | 2014-11-22 11:23:47 -0600 |
---|---|---|
committer | Tristan Sloughter <[email protected]> | 2014-11-22 20:07:08 -0600 |
commit | f89df2f4d693c8522fc9b911a6fc5bef31f338fc (patch) | |
tree | 6e25253e9b9db2ef73075d4753b060c2b9d7b854 /priv/templates/bin.dtl | |
parent | 2c9d7f4d79cb66f1bc306cac86d7ed02489b0f80 (diff) | |
download | relx-f89df2f4d693c8522fc9b911a6fc5bef31f338fc.tar.gz relx-f89df2f4d693c8522fc9b911a6fc5bef31f338fc.tar.bz2 relx-f89df2f4d693c8522fc9b911a6fc5bef31f338fc.zip |
if include_erts is false, do not include stdlibs
Diffstat (limited to 'priv/templates/bin.dtl')
-rwxr-xr-x | priv/templates/bin.dtl | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/priv/templates/bin.dtl b/priv/templates/bin.dtl index bb83434..434cbd4 100755 --- a/priv/templates/bin.dtl +++ b/priv/templates/bin.dtl @@ -47,6 +47,7 @@ export BINDIR="$ERTS_DIR/bin" export EMU="beam" export PROGNAME="erl" export LD_LIBRARY_PATH="$ERTS_DIR/lib:$LD_LIBRARY_PATH" +ERTS_LIB_DIR="$ERTS_DIR/../lib" cd "$ROOTDIR" @@ -57,7 +58,7 @@ ARGS="$@" set -- "$ERL_OPTS" [ "$SYS_CONFIG" ] && set -- "$@" -config "$SYS_CONFIG" [ "$VM_ARGS" ] && set -- "$@" -args_file "$VM_ARGS" -set -- "$@" -boot "$REL_DIR/$REL_NAME" "$ARGS" +set -- "$@" -boot_var ERTS_LIB_DIR "$ERTS_LIB_DIR" -boot "$REL_DIR/$REL_NAME" "$ARGS" # Boot the release $BINDIR/erlexec $@ |