diff options
-rw-r--r-- | gnu/packages/emacs.scm | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index f1ea4fe061..3ce01f1a24 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -233,6 +233,16 @@ (("\\(tramp-compat-process-running-p \"(.*)\"\\)" all process) (format #f "(or ~a (tramp-compat-process-running-p ~s))" all (string-append "." process "-real")))))) + (add-after 'unpack 'disable-native-compilation + (lambda _ + ;; Temporary workaround to prevent the behaviour discussed in + ;; <https://issues.guix.gnu.org/72333>. + ;; Please remove once the native-compilation for Emacs packages + ;; is fully supported. + (substitute* "lisp/transient.el" + ((";; End:") + ";; no-native-compile: t +;; End:")))) (add-before 'configure 'fix-/bin/pwd (lambda _ ;; Use `pwd', not `/bin/pwd'. |