diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2017-09-27 10:08:42 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2017-09-27 10:09:00 +0300 |
commit | 31ec52283517690b6fce91bcdd328bb14f579eff (patch) | |
tree | 29ed671d513db2398d6d39c12e93775d0253286d /gnu/packages/music.scm | |
parent | a9925374b0691eb551b0383ec88f110fc54f9fae (diff) | |
download | patches-31ec52283517690b6fce91bcdd328bb14f579eff.tar patches-31ec52283517690b6fce91bcdd328bb14f579eff.tar.gz |
gnu: lilypond: Fix fontforge detection.
* gnu/packages/music.scm (lilypond)[arguments]: Adjust fontforge
detection algorithm to allow for SOURCE_DATE_EPOCH in fontforge's build.
Diffstat (limited to 'gnu/packages/music.scm')
-rw-r--r-- | gnu/packages/music.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/music.scm b/gnu/packages/music.scm index cd354b00d7..abfe3be5f5 100644 --- a/gnu/packages/music.scm +++ b/gnu/packages/music.scm @@ -677,7 +677,9 @@ Sega Master System/Mark III, Sega Genesis/Mega Drive, BBC Micro (("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")) + (("head -n") "tail -n") + ;; Also allow for SOURCE_DATE_EPOCH = 0 in fontforge. + (("20110222") "19700101")) (setenv "out" "www") (setenv "conf" "www") #t)) |