From d5a076c36f6588366fd9766c1054807bbbfd8559 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Mon, 4 Aug 2014 18:00:00 +0200 Subject: Add option ‘build-extra-chroot-dirs’ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This is useful for extending (rather than overriding) the default set of chroot paths. --- src/libstore/globals.cc | 4 ---- 1 file changed, 4 deletions(-) (limited to 'src/libstore/globals.cc') diff --git a/src/libstore/globals.cc b/src/libstore/globals.cc index 77f25005b85f..3e8c2c636054 100644 --- a/src/libstore/globals.cc +++ b/src/libstore/globals.cc @@ -48,9 +48,6 @@ Settings::Settings() useSubstitutes = true; buildUsersGroup = getuid() == 0 ? "nixbld" : ""; useChroot = false; -#ifdef DEFAULT_CHROOT_DIRS - dirsInChroot = tokenizeString(DEFAULT_CHROOT_DIRS, ":"); -#endif useSshSubstituter = true; impersonateLinux26 = false; keepLog = true; @@ -148,7 +145,6 @@ void Settings::update() get(useSubstitutes, "build-use-substitutes"); get(buildUsersGroup, "build-users-group"); get(useChroot, "build-use-chroot"); - get(dirsInChroot, "build-chroot-dirs"); get(impersonateLinux26, "build-impersonate-linux-26"); get(keepLog, "build-keep-log"); get(compressLog, "build-compress-log"); -- cgit 1.4.1