From e2b9ed7fcc019df290f0f5bbe221803efb031123 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Tue, 27 Nov 2018 16:56:12 +0100 Subject: 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. --- gnu/packages/terminals.scm | 5 +++-- 1 file 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 _ -- cgit v1.2.3