mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-28 07:12:30 -05:00
gnu: acpi-call-linux-module: Remove reference to bash.
* gnu/packages/linux.scm (acpi-call-linux-module)[arguments]: Add a ‘patch-shebangs-harder’ phase.
This commit is contained in:
parent
6aa8f213c4
commit
6f78fe353e
1 changed files with 8 additions and 0 deletions
|
@ -1059,6 +1059,14 @@ (define-public acpi-call-linux-module
|
|||
`(#: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"))
|
||||
|
|
Loading…
Reference in a new issue