From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail-wm1-x32b.google.com (mail-wm1-x32b.google.com [IPv6:2a00:1450:4864:20::32b]) by sourceware.org (Postfix) with ESMTPS id 67DE03858401 for ; Thu, 2 Feb 2023 04:24:38 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.4.2 sourceware.org 67DE03858401 Authentication-Results: sourceware.org; dmarc=pass (p=none dis=none) header.from=adacore.com Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=adacore.com Received: by mail-wm1-x32b.google.com with SMTP id q8so435502wmo.5 for ; Wed, 01 Feb 2023 20:24:38 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=adacore.com; s=google; h=content-disposition:mime-version:message-id:subject:cc:to:from:date :from:to:cc:subject:date:message-id:reply-to; bh=LPWrNm+2uUXopBTG9ME4BZ3IHwCTkubaC5apUefGl7U=; b=fSjckBn1GorkYDFcK3z7EAXeXlZhNqodCkUWMzXPNvO9CI4PQohh88nktOLyO38bcQ EKblpugO8blOO4aNh1wF8d699hwpRzhsN9EKlYPSZ7Qsrolals8O4bK1qluhVCMwBZSS EaeeW6Vxd7wCZyTYicwlTGt+UOpJIyW/yS2EdCOoYb0PsHG2FXL+IMhNjbi5ujO6wriZ 21TbMWFyyK2w3sNKHonstQSwTcJKpg7ylkjvYCFHVPqp7zZksO8EpZv4wDREwwV7JGp7 pStHKfjiMlkn8PIE28T5Ry4jYHvpGuJKX7jyYoFAS4tCy84v3m1Ye5gru1rNkg36/mM4 2kYw== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20210112; h=content-disposition:mime-version:message-id:subject:cc:to:from:date :x-gm-message-state:from:to:cc:subject:date:message-id:reply-to; bh=LPWrNm+2uUXopBTG9ME4BZ3IHwCTkubaC5apUefGl7U=; b=QTNtLgXRmyb/Itf0+X8E2RauJzLUZ514DiS3o655yjIyiOfjScKZRPy+lrfmlUmOrn F3VehJzHHOOAnGy6QOF+GTnvUteeBwunmxX8T8BSGkbv14YPuqNDeI7GoMaDyGV9QNfB ow4+8872WW21DU9dndeiYUvHKZnM8t3Pgm+AePQAhtzzoj3TZ4lhKzBl6Q5eICeUs+OG mmX6I3S+XgwwbIxEn+vwTo3mh5TqsMyaJ0S6fhBUKenNbfG5T2EWtt5ccOR4AU/hSkNa KnB940nMCx5G1nV15tPiGBCnjxNF3BoZoJEMB6lHZzqf5ifYE0vIukBVLrKh77GsDERl o7lQ== X-Gm-Message-State: AO0yUKUyIJ78un+b18WGUdDYKIR0gDo9Og6rjovvZs5pjtOwVulmaAdC HyfPZaYGx7umxKn0FA0mdWqa3FKpye1WYQkYAw== X-Google-Smtp-Source: AK7set/X+KS8pmiHbkMpHdjb9sd1E4ntwTPt/eQXj88guxQESe0JPhGu0SVFIj+vcljwt0tKd8YKYw== X-Received: by 2002:a05:600c:1c96:b0:3dc:1050:5553 with SMTP id k22-20020a05600c1c9600b003dc10505553mr755525wms.23.1675311877243; Wed, 01 Feb 2023 20:24:37 -0800 (PST) Received: from takamaka.gnat.com (lfbn-reu-1-488-54.w92-130.abo.wanadoo.fr. [92.130.77.54]) by smtp.gmail.com with ESMTPSA id p17-20020a05600c05d100b003dc521f336esm3329824wmd.14.2023.02.01.20.24.36 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 01 Feb 2023 20:24:36 -0800 (PST) Received: by takamaka.gnat.com (Postfix, from userid 1000) id 771A38224B; Thu, 2 Feb 2023 08:24:34 +0400 (+04) Date: Thu, 2 Feb 2023 08:24:34 +0400 From: Joel Brobecker To: Mike Frysinger Cc: Joel Brobecker , gdb-patches@sourceware.org Subject: sim Makefile's "clean" target deletes checked in file Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-Spam-Status: No, score=-4.1 required=5.0 tests=BAYES_00,DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,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 List-Id: Hi Mike, In running the src-release.sh script which is the script used to produce the source tarball for our releases, I noticed that one file got deleted: sim/ppc/.gdbinit This happens as part of a call to "make distclean", but I think "make clean" will have the same effect, considering that sim/Makefile.in has: CONFIG_CLEAN_FILES = aarch64/.gdbinit arm/.gdbinit avr/.gdbinit \ [...] ppc/.gdbinit [...] I'm not really sure what the correct fix should be, though, whether we should delete the ppc/.gdbinit file, or whether we should update the CONFIG_CLEAN_FILES to remove the ppc/.gdbinit entry. Would you mind fixing this (and backport the fix to the gdb-13-branch)? Thank you! -- Joel