gnu: kmscon: Don't invoke './configure' during bootstrap.
* gnu/packages/terminals.scm (kmscon)[arguments]: Change 'autogen.sh' phase to replace 'bootstrap' and set the $NOCONFIGURE environment variable.
This commit is contained in:
parent
c324ad52b6
commit
e2b9ed7fcc
|
@ -240,9 +240,10 @@ compatibility to existing emulators like xterm, gnome-terminal, konsole, etc.")
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:phases (modify-phases %standard-phases
|
`(#:phases (modify-phases %standard-phases
|
||||||
(add-after 'unpack 'autogen.sh
|
(replace 'bootstrap
|
||||||
(lambda _
|
(lambda _
|
||||||
(zero? (system* "sh" "autogen.sh"))))
|
(setenv "NOCONFIGURE" "indeed")
|
||||||
|
(invoke "sh" "autogen.sh")))
|
||||||
;; Use elogind instead of systemd.
|
;; Use elogind instead of systemd.
|
||||||
(add-before 'configure 'remove-systemd
|
(add-before 'configure 'remove-systemd
|
||||||
(lambda _
|
(lambda _
|
||||||
|
|
Loading…
Reference in New Issue