guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

110/376: Make chroot builds easier to set up


From: Ludovic Courtès
Subject: 110/376: Make chroot builds easier to set up
Date: Wed, 28 Jan 2015 22:04:23 +0000

civodul pushed a commit to tag 1.8
in repository guix.

commit bb45092f72d173a7754f7e4a6457d44c748a893b
Author: Eelco Dolstra <address@hidden>
Date:   Mon Aug 4 17:07:28 2014 +0200

    Make chroot builds easier to set up
    
    By default, we now include /bin/sh as a bind-mount of bash.
---
 release.nix             |    8 ++++++++
 src/libstore/globals.cc |    3 +++
 2 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/release.nix b/release.nix
index 1f91e23..c439257 100644
--- a/release.nix
+++ b/release.nix
@@ -93,6 +93,14 @@ let
           --sysconfdir=/etc
         '';
 
+        # Provide a default value for the ‘build-chroot-dirs’ setting
+        # that includes /bin/sh pointing to bash.
+        preHook = lib.optionalString stdenv.isLinux (
+          let sh = stdenv.shell; in
+          ''
+            NIX_CFLAGS_COMPILE+=" -DDEFAULT_CHROOT_DIRS=\"/bin/sh=${sh}:$(tr 
'\n' ':' < ${writeReferencesToFile sh})\""
+          '');
+
         enableParallelBuilding = true;
 
         makeFlags = "profiledir=$(out)/etc/profile.d";
diff --git a/src/libstore/globals.cc b/src/libstore/globals.cc
index e9fe0be..77f2500 100644
--- a/src/libstore/globals.cc
+++ b/src/libstore/globals.cc
@@ -48,6 +48,9 @@ Settings::Settings()
     useSubstitutes = true;
     buildUsersGroup = getuid() == 0 ? "nixbld" : "";
     useChroot = false;
+#ifdef DEFAULT_CHROOT_DIRS
+    dirsInChroot = tokenizeString<StringSet>(DEFAULT_CHROOT_DIRS, ":");
+#endif
     useSshSubstituter = true;
     impersonateLinux26 = false;
     keepLog = true;



reply via email to

[Prev in Thread] Current Thread [Next in Thread]