gnu: emacs-m-buffer-el: Return #t from phases.

* gnu/packages/emacs.scm (emacs-m-buffer-el)[arguments]: Substitute
INVOKE for SYSTEM*.
This commit is contained in:
Tobias Geerinckx-Rice 2018-06-20 03:32:58 +02:00
parent bca4b2e7cc
commit d4c68d3236
No known key found for this signature in database
GPG key ID: 0DB0FF884F556D79

View file

@ -8967,10 +8967,10 @@ (define-public emacs-m-buffer-el
(modify-phases %standard-phases
(add-before 'install 'check
(lambda* (#:key inputs #:allow-other-keys)
(zero? (system* "emacs" "--batch" "-L" "."
"-l" "test/m-buffer-test.el"
"-l" "test/m-buffer-at-test.el"
"-f" "ert-run-tests-batch-and-exit")))))))
(invoke "emacs" "--batch" "-L" "."
"-l" "test/m-buffer-test.el"
"-l" "test/m-buffer-at-test.el"
"-f" "ert-run-tests-batch-and-exit"))))))
(build-system emacs-build-system)
(home-page "https://github.com/phillord/m-buffer-el")
(synopsis "List oriented buffer operations for Emacs")