me
/
guix
Archived
1
0
Fork 0

gnu: acpi-call-linux-module: Remove reference to bash.

* gnu/packages/linux.scm (acpi-call-linux-module)[arguments]: Add a
‘patch-shebangs-harder’ phase.
master
Tobias Geerinckx-Rice 2020-11-22 15:43:03 +01:00
parent 6aa8f213c4
commit 6f78fe353e
No known key found for this signature in database
GPG Key ID: 0DB0FF884F556D79
1 changed files with 8 additions and 0 deletions

View File

@ -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"))