From 0223db58ef36dbc552f91e12d2bb6e444bcfd7f6 Mon Sep 17 00:00:00 2001 From: Marius Bakke Date: Thu, 1 Mar 2018 22:33:20 +0100 Subject: [PATCH] gnu: util-linux: Don't build 'nologin'. * gnu/packages/linux.scm (util-linux)[source](snippet): Add substitution. --- gnu/packages/linux.scm | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 1e00b1c7b0..95c609201c 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -560,10 +560,11 @@ providing the system administrator with some help in common tasks.") "util-linux-CVE-2018-7738.patch")) (modules '((guix build utils))) (snippet - ;; We take the 'logger' program from GNU Inetutils and 'kill' - ;; from GNU Coreutils. + ;; We take 'nologin' from Shadow, the 'logger' program from + ;; GNU Inetutils and 'kill' from GNU Coreutils. '(begin (substitute* "configure" + (("build_nologin=yes") "build_nologin=no") (("build_logger=yes") "build_logger=no") (("build_kill=yes") "build_kill=no")) #t)))) -- 2.20.1