From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-ej1-x634.google.com (mail-ej1-x634.google.com [IPv6:2a00:1450:4864:20::634]) by sourceware.org (Postfix) with ESMTPS id 406E73858C52 for ; Wed, 20 Jul 2022 07:30:33 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.1 sourceware.org 406E73858C52 Received: by mail-ej1-x634.google.com with SMTP id j22so31520178ejs.2 for ; Wed, 20 Jul 2022 00:30:33 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=G0Jtl4csP9PPlgnyNbFd5prm2pFNmvfEBwg3gc6CcBg=; b=b4oHVvl6CGQqSqydhNzsmvYNuLMueeADl4HWgj36thAWtuxvqUBApLYK1Lq29GBjV+ 5uRmzfn39t55OkOSETiCMregX+tMEWQDx5QP9KX3EfURPWKviKt6k/DJN6G/hUL36bOv iFpVZys05I6HS/wvvAvVqioHCCBRdiHG1xYNI/hpU3blMex3rFW655oN/02weL/KISjf 6CDfBmKHWJGwHmxYlDIT8czir++CfVn2z2G4pf9w5tMLl/mEIP9d02sPGKGCfdvJSBLI ZdazeoQqqWsb6IMiS5OLKCjNH9JbCAnmlBHakahjTm5PlH2YTyXB6UXmXJ367MD/PiSU BaRA== X-Gm-Message-State: AJIora+/HCu6hXG7ogi6WGA+7cdHvJ4GhRwiWSdqEDsNWrOtRUxImwbd TGoi29XjS7KLCBi8YBp5VYD+e6NchtrdP1C8AC4= X-Google-Smtp-Source: AGRyM1tU14NeTRaL9/YYlMBBKj9tp8KOeXI0HihQCkWF+wG4jwbiRquDu5x23HoBzvVYf0mIodiyY/anuXypGCiQwls= X-Received: by 2002:a17:907:6295:b0:703:92b8:e113 with SMTP id nd21-20020a170907629500b0070392b8e113mr34596190ejc.594.1658302232121; Wed, 20 Jul 2022 00:30:32 -0700 (PDT) MIME-Version: 1.0 References: In-Reply-To: From: Richard Biener Date: Wed, 20 Jul 2022 09:30:20 +0200 Message-ID: Subject: Re: [committed] .gitignore: do not ignore config.h To: Alexander Monakov Cc: GCC Patches Content-Type: text/plain; charset="UTF-8" X-Spam-Status: No, score=-8.1 required=5.0 tests=BAYES_00, DKIM_SIGNED, DKIM_VALID, DKIM_VALID_AU, DKIM_VALID_EF, FREEMAIL_FROM, GIT_PATCH_0, RCVD_IN_DNSWL_NONE, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.6 X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on server2.sourceware.org X-BeenThere: gcc-patches@gcc.gnu.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Gcc-patches mailing list List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 20 Jul 2022 07:30:35 -0000 On Tue, Jul 19, 2022 at 4:09 PM Alexander Monakov via Gcc-patches wrote: > > GCC does not support in-tree builds at the moment, so .gitignore > concealing artifacts of accidental in-tree ./configure run may cause > confusion. Un-ignore config.h, which is known to break the build. OK > ChangeLog: > > * .gitignore: Do not ignore config.h. > --- > .gitignore | 3 ++- > 1 file changed, 2 insertions(+), 1 deletion(-) > > diff --git a/.gitignore b/.gitignore > index 021a8c741..5cc4a0fdf 100644 > --- a/.gitignore > +++ b/.gitignore > @@ -23,7 +23,8 @@ > > autom4te.cache > config.cache > -config.h > +# GCC does not support in-tree builds, do not conceal a stray config.h: > +# config.h > config.intl > config.log > config.status > -- > 2.35.1