diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-11-11 13:00:53 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-11 13:00:53 +0100 |
commit | 6f3dd09f8d5e2bd16bd26891d71829f4dd19f772 (patch) | |
tree | 5c2faf683562cbf73fac8c62daefaf95774d553e /gnu/packages/pdf.scm | |
parent | 2b2ab39cfc694e3c0cb37c0136bb606b20d41661 (diff) | |
download | guix-6f3dd09f8d5e2bd16bd26891d71829f4dd19f772.tar.gz |
gnu: libharu: Remove custom bootstrap phase.
* gnu/packages/pdf.scm (libharu)[arguments]: Remove autogen phase.
Diffstat (limited to 'gnu/packages/pdf.scm')
-rw-r--r-- | gnu/packages/pdf.scm | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm index 1ecd49215b..dc966b64d8 100644 --- a/gnu/packages/pdf.scm +++ b/gnu/packages/pdf.scm @@ -239,11 +239,7 @@ Poppler PDF rendering library.") (list (string-append "--with-zlib=" (assoc-ref %build-inputs "zlib")) (string-append "--with-png=" - (assoc-ref %build-inputs "libpng"))) - #:phases - (modify-phases %standard-phases - (add-after 'unpack 'autogen - (lambda _ (invoke "autoreconf" "-vif")))))) + (assoc-ref %build-inputs "libpng"))))) (inputs `(("zlib" ,zlib) ("libpng" ,libpng))) |