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 @@ multiscript version of @code{biblatex-ms}.")
|
||||||
"161056627w1lazfpld3lyjwfrl8j8gc4b6dzml46bzwf7mk9ifln")))
|
"161056627w1lazfpld3lyjwfrl8j8gc4b6dzml46bzwf7mk9ifln")))
|
||||||
(outputs '("out" "doc"))
|
(outputs '("out" "doc"))
|
||||||
(build-system texlive-build-system)
|
(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")
|
(home-page "https://ctan.org/pkg/bibexport")
|
||||||
(synopsis "Extract a BibTeX file based on a @file{.aux} file")
|
(synopsis "Extract a BibTeX file based on a @file{.aux} file")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in a new issue