diff options
author | Mark H Weaver <mhw@netris.org> | 2018-03-23 02:31:18 -0400 |
---|---|---|
committer | Mark H Weaver <mhw@netris.org> | 2018-03-23 04:42:09 -0400 |
commit | ac8281214f6a2891addebd9072e4f95e2b12b35c (patch) | |
tree | b8aa50cf767cfab587e31efabbd787b849353e17 /gnu/packages/mail.scm | |
parent | b4c4f3399c79cd0974922d2009d274dfb614d36b (diff) |
gnu: gmime: Return #t from all phases.
* gnu/packages/mail.scm (gmime)[arguments]: Return #t from
the 'patch-paths-in-tests' phase.
Diffstat (limited to 'gnu/packages/mail.scm')
-rw-r--r-- | gnu/packages/mail.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 40e8e53aaf..9a72a00a58 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -429,7 +429,8 @@ It adds a large amount of new and improved features to mutt.") (let* ((base (basename prog-path)) (prog (which base))) (string-append pre - (or prog (error "not found: " base)))))))))))) + (or prog (error "not found: " base)))))) + #t)))))) (home-page "http://spruce.sourceforge.net/gmime/") (synopsis "MIME message parser and creator library") (description |