From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:44308) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1etFtk-0005o3-Fn for guix-patches@gnu.org; Tue, 06 Mar 2018 11:57:09 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1etFtg-0003NI-K9 for guix-patches@gnu.org; Tue, 06 Mar 2018 11:57:08 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:40065) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1etFtg-0003NB-FJ for guix-patches@gnu.org; Tue, 06 Mar 2018 11:57:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1etFte-0005W7-6u for guix-patches@gnu.org; Tue, 06 Mar 2018 11:57:03 -0500 Subject: [bug#30734] [PATCH core-updates 1/3] gnu: util-linux: Don't build 'nologin'. References: <20180306165438.4306-1-mbakke@fastmail.com> In-Reply-To: <20180306165438.4306-1-mbakke@fastmail.com> Resent-Message-ID: From: Marius Bakke Date: Tue, 6 Mar 2018 17:56:40 +0100 Message-Id: <20180306165642.4486-1-mbakke@fastmail.com> List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 30734@debbugs.gnu.org * gnu/packages/linux.scm (util-linux)[source](snippet): Add substitution. --- gnu/packages/linux.scm | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index c33b473ca..e63abcea4 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -559,12 +559,13 @@ providing the system administrator with some help in common tasks.") (patches (search-patches "util-linux-tests.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_logger=yes") "build_logger=no") - (("build_kill=yes") "build_kill=no")) + (("build_kill=yes") "build_kill=no") + (("build_nologin=yes") "build_nologin=no")) #t)))) (build-system gnu-build-system) (outputs '("out" -- 2.16.2