From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from vmicros1.altlinux.org (vmicros1.altlinux.org [194.107.17.57]) by sourceware.org (Postfix) with ESMTP id 9EB043861031 for ; Sun, 20 Dec 2020 12:11:31 +0000 (GMT) DMARC-Filter: OpenDMARC Filter v1.3.2 sourceware.org 9EB043861031 Authentication-Results: sourceware.org; dmarc=none (p=none dis=none) header.from=altlinux.org Authentication-Results: sourceware.org; spf=pass smtp.mailfrom=ldv@altlinux.org Received: from mua.local.altlinux.org (mua.local.altlinux.org [192.168.1.14]) by vmicros1.altlinux.org (Postfix) with ESMTP id B8D0072C8B5 for ; Sun, 20 Dec 2020 15:11:30 +0300 (MSK) Received: by mua.local.altlinux.org (Postfix, from userid 508) id 898827CC89E; Sun, 20 Dec 2020 15:11:30 +0300 (MSK) Date: Sun, 20 Dec 2020 15:11:30 +0300 From: "Dmitry V. Levin" To: elfutils-devel@sourceware.org Subject: [PATCH 2/2] Update .gitignore files Message-ID: <20201220121130.GB26424@altlinux.org> References: <20201215234032.GA19917@altlinux.org> <20201215234641.GB19917@altlinux.org> <0e33ef20ac4b0ebbd4ef176d197d4931928e1916.camel@klomp.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <0e33ef20ac4b0ebbd4ef176d197d4931928e1916.camel@klomp.org> X-Spam-Status: No, score=-12.0 required=5.0 tests=BAYES_00, GIT_PATCH_0, KAM_DMARC_STATUS, SPF_HELO_NONE, SPF_PASS, TXREP autolearn=ham autolearn_force=no version=3.4.2 X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on server2.sourceware.org X-BeenThere: elfutils-devel@sourceware.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Elfutils-devel mailing list List-Unsubscribe: , List-Archive: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 20 Dec 2020 12:11:35 -0000 Signed-off-by: Dmitry V. Levin --- .gitignore | 2 ++ ChangeLog | 2 ++ config/.gitignore | 2 ++ config/ChangeLog | 2 ++ debuginfod/.gitignore | 1 + debuginfod/ChangeLog | 2 ++ tests/.gitignore | 2 ++ tests/ChangeLog | 2 ++ 8 files changed, 15 insertions(+) diff --git a/.gitignore b/.gitignore index 0055ddae..9bf350c1 100644 --- a/.gitignore +++ b/.gitignore @@ -1,5 +1,7 @@ *# *.a +*.gcda +*.gcno *.o *.orig *.os diff --git a/ChangeLog b/ChangeLog index cfdc5699..dcbb1093 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2020-12-19 Dmitry V. Levin + * .gitignore: Add *.gcda and *.gcno. + * .gitignore: Move subdirectory patterns to separate .gitignore files. 2020-12-15 Dmitry V. Levin diff --git a/config/.gitignore b/config/.gitignore index 86a4dad2..8cd8ccdb 100644 --- a/config/.gitignore +++ b/config/.gitignore @@ -9,5 +9,7 @@ /libdw.pc /libelf.pc /missing +/profile.csh +/profile.sh /test-driver /ylwrap diff --git a/config/ChangeLog b/config/ChangeLog index 8527be52..41d0c6fe 100644 --- a/config/ChangeLog +++ b/config/ChangeLog @@ -1,5 +1,7 @@ 2020-12-19 Dmitry V. Levin + * .gitignore: Add /profile.csh and /profile.sh. + * .gitignore: New file. 2020-12-12 Dmitry V. Levin diff --git a/debuginfod/.gitignore b/debuginfod/.gitignore index 382fce63..e0ff6687 100644 --- a/debuginfod/.gitignore +++ b/debuginfod/.gitignore @@ -1,2 +1,3 @@ /debuginfod /debuginfod-find +/debuginfod.h diff --git a/debuginfod/ChangeLog b/debuginfod/ChangeLog index 03e773d1..7caa27d7 100644 --- a/debuginfod/ChangeLog +++ b/debuginfod/ChangeLog @@ -1,5 +1,7 @@ 2020-12-19 Dmitry V. Levin + * .gitignore: Add /debuginfod.h. + * .gitignore: New file. 2020-12-12 Dmitry V. Levin diff --git a/tests/.gitignore b/tests/.gitignore index a9968335..d0e83da2 100644 --- a/tests/.gitignore +++ b/tests/.gitignore @@ -27,6 +27,7 @@ /backtrace-data /backtrace-dwarf /buildid +/core-dump-backtrace.lock /debugaltlink /debuginfod_build_id_find /debuglink @@ -86,6 +87,7 @@ /next_cfi /peel_type /rdwrmmap +/read_unaligned /rerequest_tag /saridx /scnnames diff --git a/tests/ChangeLog b/tests/ChangeLog index c3cd5557..13679f43 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,5 +1,7 @@ 2020-12-19 Dmitry V. Levin + * .gitignore: Add /core-dump-backtrace.lock and /read_unaligned. + * .gitignore: New file. 2020-12-12 Mark Wielaard -- ldv