mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-17 12:30:38 +02:00
gnu: emacs-ido-completing-read+: Disable native compilation.
This fixes an issue, wherein inadvertent native compilation leads to system crashes. See <https://bugs.gnu.org/57878> for a discussion. * gnu/packages/emacs-xyz.scm (emacs-ido-completing-read+)[arguments]: Add a phase to disable native compilation.
This commit is contained in:
parent
8b809a31fa
commit
cd0d27f30d
1 changed files with 12 additions and 0 deletions
|
@ -12356,6 +12356,18 @@ a file, or a complete directory.")
|
||||||
(base32
|
(base32
|
||||||
"1wn94nkfv6qyyj6clvms7m7ncqf09bgszv67may530y75kylivav"))))
|
"1wn94nkfv6qyyj6clvms7m7ncqf09bgszv67may530y75kylivav"))))
|
||||||
(build-system emacs-build-system)
|
(build-system emacs-build-system)
|
||||||
|
(arguments
|
||||||
|
(list #:phases
|
||||||
|
#~(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'disable-native-comp
|
||||||
|
(lambda _
|
||||||
|
;; Native compilation of this package may crash your system,
|
||||||
|
;; see <https://bugs.gnu.org/57878>.
|
||||||
|
(for-each
|
||||||
|
(lambda (file)
|
||||||
|
(make-file-writable file)
|
||||||
|
(emacs-batch-disable-compilation file #:native? #t))
|
||||||
|
(find-files "." "\\.el$")))))))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list emacs-s))
|
(list emacs-s))
|
||||||
(home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
|
(home-page "https://github.com/DarwinAwardWinner/ido-ubiquitous")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue