diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2016-10-10 12:58:14 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2016-10-10 12:58:14 +0300 |
commit | 7286dd218b1333cefd28ae81e5c9d88eb526d690 (patch) | |
tree | c4cc90468c7e460ecf8fc4e273e43ceef7eac832 /gnu/packages | |
parent | f726b7c52653f3cafd7dbf500b37a71bd22367d1 (diff) | |
download | guix-7286dd218b1333cefd28ae81e5c9d88eb526d690.tar guix-7286dd218b1333cefd28ae81e5c9d88eb526d690.tar.gz |
gnu: libuninameslist: Use 'modify-phases' syntax.
* gnu/packages/fontutils.scm (libuninameslist)[arguments]: Use
'modify-phases' syntax.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/fontutils.scm | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/gnu/packages/fontutils.scm b/gnu/packages/fontutils.scm index 335eebfad4..d6872d05fd 100644 --- a/gnu/packages/fontutils.scm +++ b/gnu/packages/fontutils.scm @@ -488,11 +488,10 @@ smooth contours with constant curvature at the spline joins.") ("automake" ,automake) ("libtool" ,libtool))) (arguments - `(#:phases (alist-cons-after - 'unpack 'bootstrap - (lambda _ - (zero? (system* "autoreconf" "-vi"))) - %standard-phases))) + `(#:phases + (modify-phases %standard-phases + (add-after 'unpack 'bootstrap + (lambda _ (zero? (system* "autoreconf" "-vi"))))))) (synopsis "Unicode names and annotation list") (description "LibUniNamesList holds www.unicode.org Nameslist.txt data which can be |