From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:43765) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gRIdu-0008KV-64 for guix-patches@gnu.org; Mon, 26 Nov 2018 10:17:51 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gRIcG-0001Eq-5E for guix-patches@gnu.org; Mon, 26 Nov 2018 10:16:07 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:45720) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gRIcF-0001Cq-Ug for guix-patches@gnu.org; Mon, 26 Nov 2018 10:16:04 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gRIcF-0006MM-Op for guix-patches@gnu.org; Mon, 26 Nov 2018 10:16:03 -0500 Subject: [bug#33514] shepherd: fix bootstrap/build from git Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:34320) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gRI8k-0006w7-9t for guix-patches@gnu.org; Mon, 26 Nov 2018 09:45:40 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gRI8f-0004TR-FA for guix-patches@gnu.org; Mon, 26 Nov 2018 09:45:34 -0500 Received: from mail-wr1-x433.google.com ([2a00:1450:4864:20::433]:46176) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gRI8f-0004Rq-3S for guix-patches@gnu.org; Mon, 26 Nov 2018 09:45:29 -0500 Received: by mail-wr1-x433.google.com with SMTP id l9so19179384wrt.13 for ; Mon, 26 Nov 2018 06:45:28 -0800 (PST) Received: from [192.168.2.100] (dslb-002-204-225-117.002.204.pools.vodafone-ip.de. [2.204.225.117]) by smtp.gmail.com with ESMTPSA id k7sm663702wrl.51.2018.11.26.06.45.25 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 26 Nov 2018 06:45:25 -0800 (PST) From: Florian Dold Message-ID: <51974da7-e8d6-7b3d-ba6b-e0c4bc4210c1@gmail.com> Date: Mon, 26 Nov 2018 15:43:16 +0100 MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="------------EBD087005A11FE20E749F7A4" Content-Language: en-US-large 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: 33514@debbugs.gnu.org This is a multi-part message in MIME format. --------------EBD087005A11FE20E749F7A4 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Hi all, the Shepherd currently does not build from a clean git repository (on GuixSD in a shepherd environment), as "autoreconf -ifv" does not create missing files related to gettext unless the version is specified. This tiny patch fixes the gettext version and allows bootstrapping to work from a clean git checkout. By the way, shouldn't there also be a "./bootstrap" shell script, as is customary in a lot of projects including Guix? Cheers, Florian --------------EBD087005A11FE20E749F7A4 Content-Type: text/x-patch; name="0001-build-set-gettext-version-to-make-bootstrap-work.patch" Content-Transfer-Encoding: 7bit Content-Disposition: attachment; filename*0="0001-build-set-gettext-version-to-make-bootstrap-work.patch" >From a835aa7295d20ddd207ec44401a044be631fe3a4 Mon Sep 17 00:00:00 2001 From: Florian Dold Date: Mon, 26 Nov 2018 12:59:37 +0100 Subject: [PATCH] build: set gettext version to make bootstrap work * configure.ac: add AM_GNU_GETTEXT_VERSION --- configure.ac | 1 + 1 file changed, 1 insertion(+) diff --git a/configure.ac b/configure.ac index 79483b4..3877913 100644 --- a/configure.ac +++ b/configure.ac @@ -15,6 +15,7 @@ dnl Enable silent rules by default. AM_SILENT_RULES([yes]) AM_GNU_GETTEXT([external]) +AM_GNU_GETTEXT_VERSION([0.19]) AC_CANONICAL_HOST AC_PROG_MKDIR_P -- 2.19.1 --------------EBD087005A11FE20E749F7A4--