[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: kmscon: Don't invoke './configure' during bootstrap.
From: |
guix-commits |
Subject: |
01/01: gnu: kmscon: Don't invoke './configure' during bootstrap. |
Date: |
Thu, 29 Nov 2018 09:53:27 -0500 (EST) |
mbakke pushed a commit to branch core-updates
in repository guix.
commit e2b9ed7fcc019df290f0f5bbe221803efb031123
Author: Marius Bakke <address@hidden>
Date: Tue Nov 27 16:56:12 2018 +0100
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 0f11fa6..2d15d77 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 _