diff options
author | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-02-18 22:17:40 +0100 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-02-18 22:17:40 +0100 |
commit | f610dc0b3ef6272f364566b7868fa8f9232902bc (patch) | |
tree | 876287b8480235fb3465d82a1f2dbfaa32d16411 | |
parent | b118988e40c9d84aab526ef1b9f786eac5392211 (diff) | |
download | guix-f610dc0b3ef6272f364566b7868fa8f9232902bc.tar.gz |
gnu: emacs-org-pomodoro: Fix build.
* gnu/packages/emacs-xyz.scm (emacs-org-pomodoro)[arguments]<#:test-command>: Add missing GEXP.
-rw-r--r-- | gnu/packages/emacs-xyz.scm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/gnu/packages/emacs-xyz.scm b/gnu/packages/emacs-xyz.scm index a8f29a0403..50232fcbbc 100644 --- a/gnu/packages/emacs-xyz.scm +++ b/gnu/packages/emacs-xyz.scm @@ -8013,10 +8013,9 @@ save, it exports back to the original non-Org file.") #:include #~(cons "^resources\\/" %default-include) #:tests? #t #:test-command - (list - "emacs" "--batch" - "-l" "org-pomodoro-tests.el" - "-f" "ert-run-tests-batch-and-exit") + #~(list "emacs" "--batch" + "-l" "org-pomodoro-tests.el" + "-f" "ert-run-tests-batch-and-exit") #:phases #~(modify-phases %standard-phases (add-before 'check 'make-tests-writable |