diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-20 14:08:29 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-20 14:18:11 -0400 |
commit | bca2413141693b946f41c8484fa0c2d71f2df680 (patch) | |
tree | e68c4c3ddd5cfed0fb295cc027260847ec9fafdc /gnu/packages/glib.scm | |
parent | 2e7c3e065bb38769ee4c974a88c0b23862a33c17 (diff) | |
download | guix-bca2413141693b946f41c8484fa0c2d71f2df680.tar guix-bca2413141693b946f41c8484fa0c2d71f2df680.tar.gz |
gnu: itstool: Return #t from all phases.
* gnu/packages/glib.scm (itstool)[arguments]: Return #t from
the 'wrap-program' phase.
Diffstat (limited to 'gnu/packages/glib.scm')
-rw-r--r-- | gnu/packages/glib.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm index ed2004fbbb..499675dc88 100644 --- a/gnu/packages/glib.scm +++ b/gnu/packages/glib.scm @@ -430,7 +430,8 @@ The intltool collection can be used to do these things: (let ((prog (string-append (assoc-ref outputs "out") "/bin/itstool"))) (wrap-program prog - `("PYTHONPATH" = (,(getenv "PYTHONPATH")))))))))) + `("PYTHONPATH" = (,(getenv "PYTHONPATH")))) + #t)))))) (home-page "http://www.itstool.org") (synopsis "Tool to translate XML documents with PO files") (description |