diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-24 12:05:23 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-26 02:16:58 +0200 |
commit | cb8c24b6f5800556ff63e063b269772fb87eff32 (patch) | |
tree | b58a9e0275e4cdc4e5f1e31db0a3eefc5f2dffa9 | |
parent | 60b884669287f888dd5059aed1945164bdf0912f (diff) |
gnu: libharu: Return #t from phases.
* gnu/packages/pdf.scm (libharu)[arguments]: Substitute INVOKE for
SYSTEM*.
-rw-r--r-- | gnu/packages/pdf.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/pdf.scm b/gnu/packages/pdf.scm index 643d21b3d0..e83b2c1960 100644 --- a/gnu/packages/pdf.scm +++ b/gnu/packages/pdf.scm @@ -276,7 +276,7 @@ Poppler PDF rendering library.") #:phases (modify-phases %standard-phases (add-after 'unpack 'autogen - (lambda _ (zero? (system* "autoreconf" "-vif"))))))) + (lambda _ (invoke "autoreconf" "-vif")))))) (inputs `(("zlib" ,zlib) ("libpng" ,libpng))) |