From unknown Mon Aug 18 17:54:17 2025 X-Loop: help-debbugs@gnu.org Subject: [bug#63346] [PATCH] Makefile.am: Use --add flag to "git config". Resent-From: Mekeor Melire Original-Sender: "Debbugs-submit" Resent-CC: guix-patches@gnu.org Resent-Date: Sun, 07 May 2023 10:50:02 +0000 Resent-Message-ID: Resent-Sender: help-debbugs@gnu.org X-GNU-PR-Message: report 63346 X-GNU-PR-Package: guix-patches X-GNU-PR-Keywords: patch To: 63346@debbugs.gnu.org X-Debbugs-Original-To: guix-patches@gnu.org Received: via spool by submit@debbugs.gnu.org id=B.168345658925859 (code B ref -1); Sun, 07 May 2023 10:50:02 +0000 Received: (at submit) by debbugs.gnu.org; 7 May 2023 10:49:49 +0000 Received: from localhost ([127.0.0.1]:36549 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pvbxc-0006j0-Ip for submit@debbugs.gnu.org; Sun, 07 May 2023 06:49:49 -0400 Received: from lists.gnu.org ([209.51.188.17]:54214) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pvbxY-0006in-EW for submit@debbugs.gnu.org; Sun, 07 May 2023 06:49:46 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pvbxX-0003vP-38 for guix-patches@gnu.org; Sun, 07 May 2023 06:49:43 -0400 Received: from mout01.posteo.de ([185.67.36.65]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pvbxU-00026j-Vy for guix-patches@gnu.org; Sun, 07 May 2023 06:49:42 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id F3330240102 for ; Sun, 7 May 2023 12:49:37 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.de; s=2017; t=1683456578; bh=vSSw/WH/v+E0sEOxBK2n0F19/39aHqKWS5PHoTTEWLs=; h=From:To:Subject:Date:From; b=d54uthsZ9VL/cYKm5c1dHGLI8nyE7SJv93/A5sMMl7GlPuIxSpyUYqXqmZMxAeRuv Jg12jF6aJUXCMFxJt3+U0FCPKOqqOff7K5i1rS7wLPYFG+49b3Wc+q3pJ0Mwv5FFpU 4cNeDW/4tZLe0rUN6S1fmjOJg3nCky5ZWrTM08oOZsJC41bhPWW1SVtbG51GA0D8Vw WWHfjPN58zOkxNM9kh+GH5YOopf/S+XAHxnKmFqfwe9zhGfzt1jnassuadrYvAiRaK eODU2io0THl/jEX3W6S1+tROlALcjVGr24tMh+eA8er0fW2aAH7LziJd8Fv7vw3rQw raR/XK9UkOyIQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4QDh4x0kMTz9rxF for ; Sun, 7 May 2023 12:49:36 +0200 (CEST) From: Mekeor Melire Date: Sun, 7 May 2023 10:43:41 +0000 Message-Id: <0ba73529d2b45cc9e000062579c281f954550387.1683456529.git.mekeor@posteo.de> MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=185.67.36.65; envelope-from=mekeor@posteo.de; helo=mout01.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) Without the "--add" flag to "git config include.path ...", the command fails if the user already has a configuration entry of "include.path". --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 8af69f88ac..13718e4353 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1121,7 +1121,7 @@ cuirass-jobs: $(GOBJECTS) .git/config: etc/git/gitconfig $(AM_V_at)if command -v git >/dev/null && test -d .git; then \ - git config include.path ../etc/git/gitconfig; \ + git config --add include.path ../etc/git/gitconfig; \ fi nodist_noinst_DATA = .git/hooks/pre-push .git/config base-commit: fccb48d2cec6bcf47647c82914f31e2dff617f9c -- 2.39.2 From unknown Mon Aug 18 17:54:17 2025 MIME-Version: 1.0 X-Mailer: MIME-tools 5.505 (Entity 5.505) X-Loop: help-debbugs@gnu.org From: help-debbugs@gnu.org (GNU bug Tracking System) To: Mekeor Melire Subject: bug#63346: closed (Re: bug#63346: [PATCH] Makefile.am: Use --add flag to "git config".) Message-ID: References: <87lei01dnt.fsf@gmail.com> <0ba73529d2b45cc9e000062579c281f954550387.1683456529.git.mekeor@posteo.de> X-Gnu-PR-Message: they-closed 63346 X-Gnu-PR-Package: guix-patches X-Gnu-PR-Keywords: patch Reply-To: 63346@debbugs.gnu.org Date: Sun, 07 May 2023 13:21:02 +0000 Content-Type: multipart/mixed; boundary="----------=_1683465662-18918-1" This is a multi-part message in MIME format... ------------=_1683465662-18918-1 Content-Disposition: inline Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="utf-8" Your bug report #63346: [PATCH] Makefile.am: Use --add flag to "git config". which was filed against the guix-patches package, has been closed. The explanation is attached below, along with your original report. If you require more details, please reply to 63346@debbugs.gnu.org. --=20 63346: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=3D63346 GNU Bug Tracking System Contact help-debbugs@gnu.org with problems ------------=_1683465662-18918-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at 63346-done) by debbugs.gnu.org; 7 May 2023 13:20:31 +0000 Received: from localhost ([127.0.0.1]:36693 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pveJT-0004to-Dw for submit@debbugs.gnu.org; Sun, 07 May 2023 09:20:31 -0400 Received: from mail-qt1-f178.google.com ([209.85.160.178]:56599) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pveJR-0004tZ-6j for 63346-done@debbugs.gnu.org; Sun, 07 May 2023 09:20:29 -0400 Received: by mail-qt1-f178.google.com with SMTP id d75a77b69052e-3ef4a74b42dso18118091cf.1 for <63346-done@debbugs.gnu.org>; Sun, 07 May 2023 06:20:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20221208; t=1683465623; x=1686057623; h=mime-version:user-agent:message-id:in-reply-to:date:references :subject:cc:to:from:from:to:cc:subject:date:message-id:reply-to; bh=b+pG2D7ucdDa+NBuhimt0XhkTN8vmuZBn36QJVSIHbw=; b=TbqV6jpJGTVX9JcwxWU/mDGBe4TH/HrbA5PL6OiyfpqdVPJJUrTvrbG6PqkSd5qQaY HOJcu33zzA/w4toXdAj1NjPgv8K+mrvuVLQzyGQlbQAhv8gchtT2jLGtGtqOXbVV9618 1vG3cceuxYGf4yVQ3pqA889SFWcEizv2+n37OoGBnYQi5AQOuc5NclsY5cOdV0aEW4P7 QBX/WTIZkb3+biTfLQDaE0vkQXMzWJkNIqmlsE5WcWYgLvBll3MmHZbgqTvMkFpYTeYq jFgLpFicauuuEv1K8o9ax7QnkFDvEQ/lLbG9jqqegQ7v6egPeEc/akOClLq8Bqt/yDFV c0ig== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20221208; t=1683465623; x=1686057623; h=mime-version:user-agent:message-id:in-reply-to:date:references :subject:cc:to:from:x-gm-message-state:from:to:cc:subject:date :message-id:reply-to; bh=b+pG2D7ucdDa+NBuhimt0XhkTN8vmuZBn36QJVSIHbw=; b=Gj+y+Mw3ex82J788dhaOHyj4qJBt0ogzJMYsrWPZ1Tuh1G6WopSXzA+FjrwtaGn579 byHfPzlIC7YzmeNyLY7kVoDN9VWEHKAXtTEge+rl9+cPSDaAFyjZ2Q/Vj0IspYJedRHQ k4d91z67F3fP6pCVVYju1a9uwT+CqmqwatU+8zM/M4rWFVCcfvWSx3Ox915o6Ys97iUP nTgsZ/ZAUCJbio0k5pY9M+NeZM4X0ec/BvifpK87Tau3YZslsXFXaTnZXBr1rkGU50Md r5OgTAYg5zhQiU7QhpLSUSpbNIewXgbJ7H4WIKzxMd1KPmokdS1RuwF3ZbxAMd/BwDwl cxSw== X-Gm-Message-State: AC+VfDysgut3rjtb/yLaRVAAWH1cPxv4N73mFdL4yyehqlKyms+Syrlf eewYsVbV4costq9V7aiPGG16ePMXcq0= X-Google-Smtp-Source: ACHHUZ4g7jC0F8JPGoJn/cmoWSIPDIylUdbR5BD3ldPlCAt5NzuAkn01OLwDsbu3PsMqMLZNCvNY7A== X-Received: by 2002:a05:622a:390:b0:3f1:f451:c13 with SMTP id j16-20020a05622a039000b003f1f4510c13mr11149689qtx.53.1683465623529; Sun, 07 May 2023 06:20:23 -0700 (PDT) Received: from hurd (dsl-10-131-119.b2b2c.ca. [72.10.131.119]) by smtp.gmail.com with ESMTPSA id s1-20020a05620a030100b0074e077c9317sm1924774qkm.99.2023.05.07.06.20.22 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Sun, 07 May 2023 06:20:23 -0700 (PDT) From: Maxim Cournoyer To: Mekeor Melire Subject: Re: bug#63346: [PATCH] Makefile.am: Use --add flag to "git config". References: <0ba73529d2b45cc9e000062579c281f954550387.1683456529.git.mekeor@posteo.de> Date: Sun, 07 May 2023 09:20:22 -0400 In-Reply-To: <0ba73529d2b45cc9e000062579c281f954550387.1683456529.git.mekeor@posteo.de> (Mekeor Melire's message of "Sun, 7 May 2023 10:43:41 +0000") Message-ID: <87lei01dnt.fsf@gmail.com> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/28.2 (gnu/linux) MIME-Version: 1.0 Content-Type: text/plain X-Spam-Score: 0.0 (/) X-Debbugs-Envelope-To: 63346-done Cc: 63346-done@debbugs.gnu.org X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -1.0 (-) Hi, Mekeor Melire writes: > Without the "--add" flag to "git config include.path ...", the command fails > if the user already has a configuration entry of "include.path". > --- > Makefile.am | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/Makefile.am b/Makefile.am > index 8af69f88ac..13718e4353 100644 > --- a/Makefile.am > +++ b/Makefile.am > @@ -1121,7 +1121,7 @@ cuirass-jobs: $(GOBJECTS) > > .git/config: etc/git/gitconfig > $(AM_V_at)if command -v git >/dev/null && test -d .git; then \ > - git config include.path ../etc/git/gitconfig; \ > + git config --add include.path ../etc/git/gitconfig; \ > fi Installed, thank you! -- Thanks, Maxim ------------=_1683465662-18918-1 Content-Type: message/rfc822 Content-Disposition: inline Content-Transfer-Encoding: 7bit Received: (at submit) by debbugs.gnu.org; 7 May 2023 10:49:49 +0000 Received: from localhost ([127.0.0.1]:36549 helo=debbugs.gnu.org) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pvbxc-0006j0-Ip for submit@debbugs.gnu.org; Sun, 07 May 2023 06:49:49 -0400 Received: from lists.gnu.org ([209.51.188.17]:54214) by debbugs.gnu.org with esmtp (Exim 4.84_2) (envelope-from ) id 1pvbxY-0006in-EW for submit@debbugs.gnu.org; Sun, 07 May 2023 06:49:46 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]) by lists.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pvbxX-0003vP-38 for guix-patches@gnu.org; Sun, 07 May 2023 06:49:43 -0400 Received: from mout01.posteo.de ([185.67.36.65]) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1pvbxU-00026j-Vy for guix-patches@gnu.org; Sun, 07 May 2023 06:49:42 -0400 Received: from submission (posteo.de [185.67.36.169]) by mout01.posteo.de (Postfix) with ESMTPS id F3330240102 for ; Sun, 7 May 2023 12:49:37 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=posteo.de; s=2017; t=1683456578; bh=vSSw/WH/v+E0sEOxBK2n0F19/39aHqKWS5PHoTTEWLs=; h=From:To:Subject:Date:From; b=d54uthsZ9VL/cYKm5c1dHGLI8nyE7SJv93/A5sMMl7GlPuIxSpyUYqXqmZMxAeRuv Jg12jF6aJUXCMFxJt3+U0FCPKOqqOff7K5i1rS7wLPYFG+49b3Wc+q3pJ0Mwv5FFpU 4cNeDW/4tZLe0rUN6S1fmjOJg3nCky5ZWrTM08oOZsJC41bhPWW1SVtbG51GA0D8Vw WWHfjPN58zOkxNM9kh+GH5YOopf/S+XAHxnKmFqfwe9zhGfzt1jnassuadrYvAiRaK eODU2io0THl/jEX3W6S1+tROlALcjVGr24tMh+eA8er0fW2aAH7LziJd8Fv7vw3rQw raR/XK9UkOyIQ== Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 4QDh4x0kMTz9rxF for ; Sun, 7 May 2023 12:49:36 +0200 (CEST) From: Mekeor Melire To: guix-patches@gnu.org Subject: [PATCH] Makefile.am: Use --add flag to "git config". Date: Sun, 7 May 2023 10:43:41 +0000 Message-Id: <0ba73529d2b45cc9e000062579c281f954550387.1683456529.git.mekeor@posteo.de> MIME-Version: 1.0 Content-Type: text/plain Received-SPF: pass client-ip=185.67.36.65; envelope-from=mekeor@posteo.de; helo=mout01.posteo.de X-Spam_score_int: -43 X-Spam_score: -4.4 X-Spam_bar: ---- X-Spam_report: (-4.4 / 5.0 requ) BAYES_00=-1.9, DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, DKIM_VALID_EF=-0.1, RCVD_IN_DNSWL_MED=-2.3, RCVD_IN_MSPIKE_H2=-0.001, SPF_HELO_NONE=0.001, SPF_PASS=-0.001, T_SCC_BODY_TEXT_LINE=-0.01 autolearn=ham autolearn_force=no X-Spam_action: no action X-Spam-Score: -1.3 (-) X-Debbugs-Envelope-To: submit X-BeenThere: debbugs-submit@debbugs.gnu.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: debbugs-submit-bounces@debbugs.gnu.org Sender: "Debbugs-submit" X-Spam-Score: -2.3 (--) Without the "--add" flag to "git config include.path ...", the command fails if the user already has a configuration entry of "include.path". --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 8af69f88ac..13718e4353 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1121,7 +1121,7 @@ cuirass-jobs: $(GOBJECTS) .git/config: etc/git/gitconfig $(AM_V_at)if command -v git >/dev/null && test -d .git; then \ - git config include.path ../etc/git/gitconfig; \ + git config --add include.path ../etc/git/gitconfig; \ fi nodist_noinst_DATA = .git/hooks/pre-push .git/config base-commit: fccb48d2cec6bcf47647c82914f31e2dff617f9c -- 2.39.2 ------------=_1683465662-18918-1--