gnu: emacs-org: Fix native builds.
* gnu/packages/emacs-xyz.scm (emacs-org)[#:phases]: Wrap ‘build’ in a directory excursion to the actual lisp directory. Change-Id: Ifa10f9e91fe21cd4c34da11b68ddb77a03d847camaster
parent
56a7c1308a
commit
6c43744210
|
@ -16752,6 +16752,10 @@ passive voice.")
|
|||
(substitute* "testing/lisp/test-org.el"
|
||||
(("test-org/org-(encode-time|time-string-to-time) .*" all)
|
||||
(string-append all " (skip-unless nil)\n")))))
|
||||
(replace 'build
|
||||
(lambda args
|
||||
(with-directory-excursion "lisp"
|
||||
(apply (assoc-ref %standard-phases 'build) args))))
|
||||
(replace 'install
|
||||
(lambda _
|
||||
(let ((elpa (elpa-directory #$output))
|
||||
|
|
Reference in New Issue