gnu: emacs-xelb: Return #t from phases.
* gnu/packages/emacs.scm (emacs-xelb)[arguments]: Substitute INVOKE for SYSTEM*.
This commit is contained in:
parent
2f48416f47
commit
bca4b2e7cc
|
@ -6148,13 +6148,13 @@ which code derived from Kelvin H's org-page.")
|
||||||
(modify-phases %standard-phases
|
(modify-phases %standard-phases
|
||||||
(add-after 'unpack 'regenerate-el-files
|
(add-after 'unpack 'regenerate-el-files
|
||||||
(lambda* (#:key inputs #:allow-other-keys)
|
(lambda* (#:key inputs #:allow-other-keys)
|
||||||
(zero? (system* "make"
|
(invoke "make"
|
||||||
(string-append "PROTO_PATH="
|
(string-append "PROTO_PATH="
|
||||||
(assoc-ref inputs "xcb-proto")
|
(assoc-ref inputs "xcb-proto")
|
||||||
"/share/xcb")
|
"/share/xcb")
|
||||||
(string-append "EMACS_BIN="
|
(string-append "EMACS_BIN="
|
||||||
(assoc-ref inputs "emacs")
|
(assoc-ref inputs "emacs")
|
||||||
"/bin/emacs -Q"))))))))
|
"/bin/emacs -Q")))))))
|
||||||
(native-inputs `(("xcb-proto" ,xcb-proto)))
|
(native-inputs `(("xcb-proto" ,xcb-proto)))
|
||||||
(home-page "https://github.com/ch11ng/xelb")
|
(home-page "https://github.com/ch11ng/xelb")
|
||||||
(synopsis "X protocol Emacs Lisp binding")
|
(synopsis "X protocol Emacs Lisp binding")
|
||||||
|
|
Loading…
Reference in New Issue