mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: lilypond: Fix check for fontforge version.
* gnu/packages/music.scm (lilypond)[arguments]: Patch configure script to find actual fontforge version.
This commit is contained in:
parent
dd21308225
commit
7affb2c1ac
1 changed files with 4 additions and 1 deletions
|
@ -312,7 +312,10 @@ (define-public lilypond
|
||||||
(add-before 'configure 'prepare-configuration
|
(add-before 'configure 'prepare-configuration
|
||||||
(lambda _
|
(lambda _
|
||||||
(substitute* "configure"
|
(substitute* "configure"
|
||||||
(("SHELL=/bin/sh") "SHELL=sh"))
|
(("SHELL=/bin/sh") "SHELL=sh")
|
||||||
|
;; When checking the fontforge version do not consider the
|
||||||
|
;; version string that's part of the directory.
|
||||||
|
(("head -n") "tail -n"))
|
||||||
(setenv "out" "www")
|
(setenv "out" "www")
|
||||||
(setenv "conf" "www")
|
(setenv "conf" "www")
|
||||||
#t))
|
#t))
|
||||||
|
|
Loading…
Reference in a new issue