[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
02/02: gnu: acpi-call-linux-module: Remove reference to bash.
From: |
guix-commits |
Subject: |
02/02: gnu: acpi-call-linux-module: Remove reference to bash. |
Date: |
Sun, 22 Nov 2020 09:58:59 -0500 (EST) |
nckx pushed a commit to branch master
in repository guix.
commit 6f78fe353e5cb5109eb1eed8727870a9e5efdb59
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Sun Nov 22 15:43:03 2020 +0100
gnu: acpi-call-linux-module: Remove reference to bash.
* gnu/packages/linux.scm (acpi-call-linux-module)[arguments]: Add a
‘patch-shebangs-harder’ phase.
---
gnu/packages/linux.scm | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm
index 159fa2a..f19f8e2 100644
--- a/gnu/packages/linux.scm
+++ b/gnu/packages/linux.scm
@@ -1059,6 +1059,14 @@ It has been modified to remove all non-free binary
blobs.")
`(#:tests? #f ; no tests
#:phases
(modify-phases %standard-phases
+ (add-before 'install 'patch-shebangs-harder
+ ;; The (only) shebangs in examples/ don't justify a reference.
+ ;; However, do substitute a more portable one than the original.
+ (lambda _
+ (substitute* (find-files "examples" ".")
+ (("^(#! *)/[^ ]*/" _ shebang)
+ (string-append shebang "/usr/bin/env ")))
+ #t))
(add-after 'install 'install-documentation
(lambda* (#:key outputs #:allow-other-keys)
(let* ((out (assoc-ref outputs "out"))