gnu: emacs-slime: Remove trailing #T from phases.
* gnu/packages/emacs-xyz.scm (emacs-slime)[arguments]<#:phases>: Remove trailing #T.master
parent
970e974b95
commit
295a91d848
|
@ -7005,13 +7005,11 @@ in @code{html-mode}.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'make-git-checkout-writable
|
(add-after 'unpack 'make-git-checkout-writable
|
||||||
(lambda _
|
(lambda _
|
||||||
(for-each make-file-writable (find-files "."))
|
(for-each make-file-writable (find-files "."))))
|
||||||
#t))
|
|
||||||
(add-before 'install 'configure
|
(add-before 'install 'configure
|
||||||
(lambda* _
|
(lambda* _
|
||||||
(emacs-substitute-variables "slime.el"
|
(emacs-substitute-variables "slime.el"
|
||||||
("inferior-lisp-program" "sbcl"))
|
("inferior-lisp-program" "sbcl"))))
|
||||||
#t))
|
|
||||||
(add-before 'install 'install-doc
|
(add-before 'install 'install-doc
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((out (assoc-ref outputs "out"))
|
(let* ((out (assoc-ref outputs "out"))
|
||||||
|
@ -7033,8 +7031,7 @@ in @code{html-mode}.")
|
||||||
(install-file f doc-dir)
|
(install-file f doc-dir)
|
||||||
(delete-file f))
|
(delete-file f))
|
||||||
doc-files)
|
doc-files)
|
||||||
(delete-file-recursively "doc")
|
(delete-file-recursively "doc")))))))
|
||||||
#t))))))
|
|
||||||
(home-page "https://github.com/slime/slime")
|
(home-page "https://github.com/slime/slime")
|
||||||
(synopsis "Superior Lisp Interaction Mode for Emacs")
|
(synopsis "Superior Lisp Interaction Mode for Emacs")
|
||||||
(description
|
(description
|
||||||
|
|
Reference in New Issue