guix-commits
[Top][All Lists]
Advanced

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

03/05: gnu: mergerfs: Do not refer to the native bash.


From: guix-commits
Subject: 03/05: gnu: mergerfs: Do not refer to the native bash.
Date: Thu, 8 Jul 2021 23:16:51 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit 478104c398840d8fa9415d1250d4501b2280d2f3
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Fri Jul 9 02:52:47 2021 +0200

    gnu: mergerfs: Do not refer to the native bash.
    
    * gnu/packages/linux.scm (mergerfs)[inputs]: Add bash-minimal.
    [arguments]: Refer to it rather than to the native build bash.
---
 gnu/packages/file-systems.scm | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/gnu/packages/file-systems.scm b/gnu/packages/file-systems.scm
index c6773cc..2332258 100644
--- a/gnu/packages/file-systems.scm
+++ b/gnu/packages/file-systems.scm
@@ -44,6 +44,7 @@
   #:use-module (gnu packages attr)
   #:use-module (gnu packages autotools)
   #:use-module (gnu packages base)
+  #:use-module (gnu packages bash)
   #:use-module (gnu packages bison)
   #:use-module (gnu packages check)
   #:use-module (gnu packages compression)
@@ -1404,8 +1405,8 @@ On Guix System, you will need to invoke the included 
shell scripts as
                 (string-append (assoc-ref inputs "util-linux")
                                "/bin/" maybe-u "mount")))
              (substitute* '("libfuse/util/mount.mergerfs.c")
-               (("/bin/sh")
-                (which "sh")))
+               (("/bin/sh" command)
+                (string-append (assoc-ref inputs "bash-minimal") command)))
              ;; The Makefile does not allow overriding PREFIX via make 
variables.
              (substitute* '("Makefile" "libfuse/Makefile")
                (("= /usr/local") (string-append "= " (assoc-ref outputs 
"out")))
@@ -1416,7 +1417,9 @@ On Guix System, you will need to invoke the included 
shell scripts as
                (("strip") "true"))
              #t)))))
     ;; mergerfs bundles a heavily modified copy of libfuse.
-    (inputs `(("util-linux" ,util-linux)))
+    (inputs
+     `(("bash-minimal" ,bash-minimal)
+       ("util-linux" ,util-linux)))
     (home-page "https://github.com/trapexit/mergerfs";)
     (synopsis "Featureful union file system")
     (description "mergerfs is a union file system geared towards simplifying



reply via email to

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