From mboxrd@z Thu Jan 1 00:00:00 1970 From: Cyril Roelandt Subject: [PATCH] coreutils: also install GNU hostname. Date: Tue, 22 Jan 2013 00:11:37 +0100 Message-ID: <1358809897-7914-1-git-send-email-tipecaml@gmail.com> Return-path: Received: from eggs.gnu.org ([208.118.235.92]:42491) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TxQge-0002Ef-Du for bug-guix@gnu.org; Mon, 21 Jan 2013 18:21:57 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TxQgd-0003nF-DS for bug-guix@gnu.org; Mon, 21 Jan 2013 18:21:56 -0500 Received: from mail-wg0-f49.google.com ([74.125.82.49]:54196) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TxQgd-0003mx-6l for bug-guix@gnu.org; Mon, 21 Jan 2013 18:21:55 -0500 Received: by mail-wg0-f49.google.com with SMTP id 15so937738wgd.28 for ; Mon, 21 Jan 2013 15:21:54 -0800 (PST) List-Id: Bug reports for GNU Guix List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org Sender: bug-guix-bounces+gcggb-bug-guix=m.gmane.org@gnu.org To: bug-guix@gnu.org * gnu/packages/base.scm: install hostname along with the other programs provided by coreutils. --- Hello, I needed GNU hostname, but could not find it in ~/.guix-profile/bin/, even though I had previousy installed coreutils. This is because GNU hostname is not automatically installed when compiling coreutils. WBR, Cyril Roelandt. gnu/packages/base.scm | 1 + 1 file changed, 1 insertion(+) diff --git a/gnu/packages/base.scm b/gnu/packages/base.scm index 4764039..c7af0d2 100644 --- a/gnu/packages/base.scm +++ b/gnu/packages/base.scm @@ -278,6 +278,7 @@ The tools supplied with this package are: ("perl" ,perl))) ; TODO: add SELinux (arguments `(#:parallel-build? #f ; help2man may be called too early + #:configure-flags '("--enable-install-program=hostname") #:phases (alist-cons-before 'build 'patch-shell-references (lambda* (#:key inputs #:allow-other-keys) -- 1.7.10.4