aboutsummaryrefslogtreecommitdiffstats
path: root/lib/reltool/src
diff options
context:
space:
mode:
authorSiri Hansen <[email protected]>2018-11-28 11:39:17 +0100
committerGitHub <[email protected]>2018-11-28 11:39:17 +0100
commitf20d86b7994596ace8713b61af0925d273a7f03e (patch)
treef4c7c4d52c1a2876b9020015a3152e23dba14009 /lib/reltool/src
parentefee45e4381ce1d1fc459e1eb651df8c5b0c03bc (diff)
parent807c48ea7999a9ed7becdd31db0a8e8e647d5bd2 (diff)
downloadotp-f20d86b7994596ace8713b61af0925d273a7f03e.tar.gz
otp-f20d86b7994596ace8713b61af0925d273a7f03e.tar.bz2
otp-f20d86b7994596ace8713b61af0925d273a7f03e.zip
Merge pull request #2008 from aronisstav/reltool-fix-erl-libs-windows
Make reltool correctly handle Windows 'ERL_LIBS' OTP-15454
Diffstat (limited to 'lib/reltool/src')
-rw-r--r--lib/reltool/src/reltool_utils.erl13
1 files changed, 12 insertions, 1 deletions
diff --git a/lib/reltool/src/reltool_utils.erl b/lib/reltool/src/reltool_utils.erl
index 060a0912f9..2afa386cb3 100644
--- a/lib/reltool/src/reltool_utils.erl
+++ b/lib/reltool/src/reltool_utils.erl
@@ -47,6 +47,9 @@
call/2, cast/2, reply/3]).
+%% For testing
+-export([erl_libs/2]).
+
-include_lib("kernel/include/file.hrl").
-include_lib("wx/include/wx.hrl").
-include("reltool.hrl").
@@ -55,7 +58,15 @@ root_dir() ->
code:root_dir().
erl_libs() ->
- string:lexemes(os:getenv("ERL_LIBS", ""), ":;").
+ erl_libs(os:getenv("ERL_LIBS", ""), os:type()).
+
+erl_libs(ErlLibs, OsType) when is_list(ErlLibs) ->
+ Sep =
+ case OsType of
+ {win32, _} -> ";";
+ _ -> ":"
+ end,
+ string:lexemes(ErlLibs, Sep).
lib_dirs(Dir) ->
case erl_prim_loader:list_dir(Dir) of