diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-24 12:09:37 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-26 02:16:57 +0200 |
commit | 82d2dfa06140cd9a79b1ee3628c15a2f3deb069f (patch) | |
tree | d04172dca302ed46005f571f105d680fc191d49d /gnu | |
parent | 7232c3f52325510a37c6c01af5800f11b50999ae (diff) | |
download | guix-82d2dfa06140cd9a79b1ee3628c15a2f3deb069f.tar guix-82d2dfa06140cd9a79b1ee3628c15a2f3deb069f.tar.gz |
gnu: notmuch: Return #t from all phases.
* gnu/packages/mail.scm (notmuch)[arguments]: Substitute INVOKE for
SYSTEM*.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/mail.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 6488dd00f0..58ccb1e397 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -795,12 +795,10 @@ invoking @command{notifymuch} from the post-new hook.") (elisp (string-append out "/share/emacs/site-lisp/guix.d/" ,name "-" ,version))) - (zero? - (system* - "./configure" - (string-append "--prefix=" out) - (string-append "--emacslispdir=" elisp) - (string-append "--emacsetcdir=" elisp)))))) + (invoke "./configure" + (string-append "--prefix=" out) + (string-append "--emacslispdir=" elisp) + (string-append "--emacsetcdir=" elisp))))) (add-before 'check 'prepare-test-environment (lambda _ (setenv "TEST_CC" "gcc") |