mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: texlive-bibexport: Fix Bash shebang.
<https://issues.guix.gnu.org/68717> * gnu/packages/tex.scm (texlive-bibexport)[arguments]<#:phases>: Fix Bash shebang in generated script. Change-Id: Idc6192495994654e6d0b0b2ca2b15e62de1ee9ae
This commit is contained in:
parent
3821ee62cc
commit
836d608a56
1 changed files with 9 additions and 1 deletions
|
@ -5141,7 +5141,15 @@ (define-public texlive-bibexport
|
|||
"161056627w1lazfpld3lyjwfrl8j8gc4b6dzml46bzwf7mk9ifln")))
|
||||
(outputs '("out" "doc"))
|
||||
(build-system texlive-build-system)
|
||||
(arguments (list #:link-scripts #~(list "bibexport.sh")))
|
||||
(arguments
|
||||
(list
|
||||
#:link-scripts #~(list "bibexport.sh")
|
||||
#:phases
|
||||
#~(modify-phases %standard-phases
|
||||
(add-after 'build 'fix-bash-shebang
|
||||
(lambda _
|
||||
(substitute* "scripts/bibexport/bibexport.sh"
|
||||
(("/bin/bash") (which "bash"))))))))
|
||||
(home-page "https://ctan.org/pkg/bibexport")
|
||||
(synopsis "Extract a BibTeX file based on a @file{.aux} file")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue