From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 1F095139082 for ; Wed, 29 Nov 2017 21:36:36 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 670F5E0C5F; Wed, 29 Nov 2017 21:36:35 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 479DFE0C3F for ; Wed, 29 Nov 2017 21:36:35 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 3333733BF3C for ; Wed, 29 Nov 2017 21:36:34 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id E6B0EAC05 for ; Wed, 29 Nov 2017 21:36:32 +0000 (UTC) From: "Fabian Groffen" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Fabian Groffen" Message-ID: <1511991193.514450bb4e8e687f882f1a2f1cb1e302880533d4.grobian@gentoo> Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/rsync-generation/ X-VCS-Repository: repo/proj/prefix X-VCS-Files: scripts/rsync-generation/hashgen.c X-VCS-Directories: scripts/rsync-generation/ X-VCS-Committer: grobian X-VCS-Committer-Name: Fabian Groffen X-VCS-Revision: 514450bb4e8e687f882f1a2f1cb1e302880533d4 X-VCS-Branch: master Date: Wed, 29 Nov 2017 21:36:32 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 309bd886-7d04-49a5-907e-6b4bcb4f351a X-Archives-Hash: 8d5a2806e131e3d4645e8dff9ada1b95 commit: 514450bb4e8e687f882f1a2f1cb1e302880533d4 Author: Fabian Groffen gentoo org> AuthorDate: Wed Nov 29 21:33:13 2017 +0000 Commit: Fabian Groffen gentoo org> CommitDate: Wed Nov 29 21:33:13 2017 +0000 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=514450bb hashgen: ignore Manifest in top level Manifest.files.gz scripts/rsync-generation/hashgen.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/rsync-generation/hashgen.c b/scripts/rsync-generation/hashgen.c index 79d26a9ae7..0a00c215f7 100644 --- a/scripts/rsync-generation/hashgen.c +++ b/scripts/rsync-generation/hashgen.c @@ -327,6 +327,8 @@ process_dir(const char *dir) continue; if (strcmp(e->d_name, my_manifest) == 0) continue; + if (strcmp(e->d_name, str_manifest) == 0) + continue; snprintf(path, sizeof(path), "%s/%s", dir, e->d_name); if (!stat(path, &s)) { if (s.st_mode & S_IFDIR) {