gnu: emacs-evil: Fix test helpers.

* gnu/packages/emacs-xyz.scm (emacs-evil)[arguments]: Add a 'fix-test-helpers'
phase.
This commit is contained in:
Clément Lassieur 2019-10-29 11:59:41 +01:00
parent 3af12c75f9
commit 10224994da
No known key found for this signature in database
GPG key ID: 89F96D4808F359C7

View file

@ -7421,6 +7421,14 @@ (define-public emacs-evil
(sha256
(base32
"1833w397xhac5g3pp25szr2gyvclxy91aw27azvbmsx94pyk2a3q"))))
(arguments
`(#:phases
(modify-phases %standard-phases
(add-before 'check 'fix-test-helpers
(lambda _
(substitute* "evil-test-helpers.el"
(("\\(undo-tree-mode 1\\)") ""))
#t)))))
(build-system emacs-build-system)
(home-page "https://github.com/emacs-evil/evil")
(synopsis "Extensible Vi layer for Emacs")