aboutsummaryrefslogtreecommitdiffstats
path: root/lib/sasl
diff options
context:
space:
mode:
authorTobias Schlager <[email protected]>2013-11-28 12:39:26 +0100
committerHenrik Nord <[email protected]>2013-12-03 12:30:04 +0100
commitd4c92bf58248124199fac354cdf3fe5fbc727a3f (patch)
tree3ccbec576a9d9e3d1d5901f78dc4484c920246dd /lib/sasl
parent60e7db6396a0966cfaea83eba96c0f13e4768aef (diff)
downloadotp-d4c92bf58248124199fac354cdf3fe5fbc727a3f.tar.gz
otp-d4c92bf58248124199fac354cdf3fe5fbc727a3f.tar.bz2
otp-d4c92bf58248124199fac354cdf3fe5fbc727a3f.zip
Fix boot file generation for intermediate releases.
A previous refactoring messed up the paths used in the start.boot file used in intermediate releases generated for emulator upgrades.
Diffstat (limited to 'lib/sasl')
-rw-r--r--lib/sasl/src/release_handler.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/sasl/src/release_handler.erl b/lib/sasl/src/release_handler.erl
index c1b715b970..a5a234cbc0 100644
--- a/lib/sasl/src/release_handler.erl
+++ b/lib/sasl/src/release_handler.erl
@@ -1108,7 +1108,7 @@ new_emulator_make_hybrid_boot(CurrentVsn,ToVsn,TmpVsn,BaseLibs,RelDir,Opts,Maste
Args = [ToVsn,Opts],
{ok,FromBoot} = read_file(FromBootFile,Masters),
{ok,ToBoot} = read_file(ToBootFile,Masters),
- {{_,_,KernelPath},{_,_,SaslPath},{_,_,StdlibPath}} = BaseLibs,
+ {{_,_,KernelPath},{_,_,StdlibPath},{_,_,SaslPath}} = BaseLibs,
Paths = {filename:join(KernelPath,"ebin"),
filename:join(StdlibPath,"ebin"),
filename:join(SaslPath,"ebin")},