diff options
author | Marius Bakke <mbakke@fastmail.com> | 2018-11-27 16:56:12 +0100 |
---|---|---|
committer | Marius Bakke <mbakke@fastmail.com> | 2018-11-29 14:45:41 +0100 |
commit | e2b9ed7fcc019df290f0f5bbe221803efb031123 (patch) | |
tree | d45aa6a0f235d3a791a53b6c32526424d17fc77c /gnu/packages/terminals.scm | |
parent | c324ad52b6066b4626312a4120b645c43989dd0a (diff) | |
download | patches-e2b9ed7fcc019df290f0f5bbe221803efb031123.tar patches-e2b9ed7fcc019df290f0f5bbe221803efb031123.tar.gz |
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.
Diffstat (limited to 'gnu/packages/terminals.scm')
-rw-r--r-- | gnu/packages/terminals.scm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm index 0f11fa650a..2d15d77524 100644 --- a/gnu/packages/terminals.scm +++ b/gnu/packages/terminals.scm @@ -240,9 +240,10 @@ compatibility to existing emulators like xterm, gnome-terminal, konsole, etc.") (build-system gnu-build-system) (arguments `(#:phases (modify-phases %standard-phases - (add-after 'unpack 'autogen.sh + (replace 'bootstrap (lambda _ - (zero? (system* "sh" "autogen.sh")))) + (setenv "NOCONFIGURE" "indeed") + (invoke "sh" "autogen.sh"))) ;; Use elogind instead of systemd. (add-before 'configure 'remove-systemd (lambda _ |