nckx pushed a commit to branch master
in repository guix.

commit fb4c0efbb1d38edec7d939ba59ebd38672788cdc
Author: Tobias Geerinckx-Rice <[email protected]>
AuthorDate: Wed Oct 13 23:21:29 2021 +0200

    gnu: fakeroot: Invoke an absolute cat.
    
    * gnu/packages/linux.scm (fakeroot)[arguments]: Refer to ‘cat’ by its
    absolute file name.
---
 gnu/packages/linux.scm | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 4a54fd9..b34e002 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -7871,9 +7871,9 @@ the superuser to make device nodes.")
                (("sed")
                 (string-append (assoc-ref inputs "sed")
                                "/bin/sed"))
-               (("cut")
+               (("cat|cut" command)
                 (string-append (assoc-ref inputs "coreutils")
-                               "/bin/cut")) )))
+                               "/bin/" command)) )))
          (replace 'bootstrap
            (lambda _
              ;; The "preroll" script takes care of Autoconf and also

Reply via email to