gnu: lilypond: Fix check for fontforge version.

* gnu/packages/music.scm (lilypond)[arguments]: Patch configure script
  to find actual fontforge version.
master
Ricardo Wurmus 2016-03-25 09:58:57 +01:00
parent dd21308225
commit 7affb2c1ac
1 changed files with 4 additions and 1 deletions

View File

@ -312,7 +312,10 @@ interface. It is implemented as a frontend to @code{klick}.")
(add-before 'configure 'prepare-configuration
(lambda _
(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 "conf" "www")
#t))