diff options
author | Will Dietz <w@wdtz.org> | 2018-04-20 11:55:04 -0500 |
---|---|---|
committer | Will Dietz <w@wdtz.org> | 2018-04-20 12:24:23 -0500 |
commit | 6d9129014d443bcec23c6665f00fc020e1a9405b (patch) | |
tree | 08b8fa3eb7252238a9fad5da459238ae1c8a0315 /src | |
parent | a8c61cef2624ce39abb446e7c46064917f6f6b78 (diff) |
build.cc: fix bind-mount of /dev/{pts,ptmx} fallback
Don't bind-mount these to themselves,
mount them into the chroot directory.
Fixes pty issues when using sandbox on CentOS 7.4.
(build of perlPackages.IOTty fails before this change)
Diffstat (limited to 'src')
-rw-r--r-- | src/libstore/build.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstore/build.cc b/src/libstore/build.cc index e5285ad9a..416c775a3 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -2699,8 +2699,8 @@ void DerivationGoal::runChild() } else { if (errno != EINVAL) throw SysError("mounting /dev/pts"); - doBind("/dev/pts", "/dev/pts"); - doBind("/dev/ptmx", "/dev/ptmx"); + doBind("/dev/pts", chrootRootDir + "/dev/pts"); + doBind("/dev/ptmx", chrootRootDir + "/dev/ptmx"); } } |