From 4166b11a53f16365f9becfa4f29f15047fc221af Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 11 Nov 2008 14:59:20 +0000 Subject: [PATCH] * Add /dev/pts to the default nix.conf. --- nix.conf.example | 8 ++++---- src/libstore/build.cc | 9 ++++----- 2 files changed, 8 insertions(+), 9 deletions(-) diff --git a/nix.conf.example b/nix.conf.example index a97554b18e..547fa6cdc0 100644 --- a/nix.conf.example +++ b/nix.conf.example @@ -164,13 +164,13 @@ # (using `mount --bind' on Linux) some directories from the normal # file system hierarchy inside the chroot. These are the Nix store, # the temporary build directory (usually /tmp/nix--) and -# the directories listed here. The default is "/dev /proc". Files -# in /dev (such as /dev/null) are needed by many builds, and some -# files in /proc may also be needed occasionally. +# the directories listed here. The default is "/dev /dev/pts /proc". +# Files in /dev (such as /dev/null) are needed by many builds, and +# some files in /proc may also be needed occasionally. # # Example: # build-use-chroot = /dev /proc /bin -#build-chroot-dirs = /dev /proc +#build-chroot-dirs = /dev /dev/pts /proc ### Option `system' diff --git a/src/libstore/build.cc b/src/libstore/build.cc index 586e449221..3cd281fc83 100644 --- a/src/libstore/build.cc +++ b/src/libstore/build.cc @@ -1744,15 +1744,14 @@ void DerivationGoal::startBuilder() autoDelChrootTmp = boost::shared_ptr(new AutoDelete(chrootTmpDir)); /* Bind-mount a user-configurable set of directories from the - host file system. */ + host file system. The `/dev/pts' directory must be mounted + separately so that newly-created pseudo-terminals show + up. */ Paths defaultDirs; defaultDirs.push_back("/dev"); - - /* The `/dev/pts' directory must be mounted separately so that - newly-created pseudo-terminals show up. */ defaultDirs.push_back("/dev/pts"); - defaultDirs.push_back("/proc"); + Paths dirsInChroot = querySetting("build-chroot-dirs", defaultDirs); dirsInChroot.push_front(nixStore);