mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: emacs-sly-named-readtables: Disable byte compilation of its autoload file.
*gnu/packages/emacs-xyz.scm (emacs-sly-named-readtables)[phases] {enable-autoloads-compilation}: Delete.
This commit is contained in:
parent
cc09ad9115
commit
10a6b85969
1 changed files with 4 additions and 1 deletions
|
@ -7532,7 +7532,10 @@ (define-public emacs-sly-named-readtables
|
|||
(propagated-inputs
|
||||
`(("emacs-sly" ,emacs-sly)))
|
||||
(arguments
|
||||
'(#:include (cons* "\\.lisp$" "\\.asd$" %default-include)))
|
||||
'(#:include (cons* "\\.lisp$" "\\.asd$" %default-include)
|
||||
#:phases (modify-phases %standard-phases
|
||||
;; Byte compilation of the autoload file fails.
|
||||
(delete 'enable-autoloads-compilation))))
|
||||
(synopsis "Named-readtables support for SLY")
|
||||
(description
|
||||
"@command{sly-named-readtables} is an external contrib for SLY that
|
||||
|
|
Loading…
Reference in a new issue