Gentoo Archives: gentoo-commits

From: Fabian Groffen <grobian@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/proj/prefix:master commit in: scripts/rsync-generation/
Date: Wed, 29 Nov 2017 21:36:36
Message-Id: 1511991193.514450bb4e8e687f882f1a2f1cb1e302880533d4.grobian@gentoo
1 commit: 514450bb4e8e687f882f1a2f1cb1e302880533d4
2 Author: Fabian Groffen <grobian <AT> gentoo <DOT> org>
3 AuthorDate: Wed Nov 29 21:33:13 2017 +0000
4 Commit: Fabian Groffen <grobian <AT> gentoo <DOT> org>
5 CommitDate: Wed Nov 29 21:33:13 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/proj/prefix.git/commit/?id=514450bb
7
8 hashgen: ignore Manifest in top level Manifest.files.gz
9
10 scripts/rsync-generation/hashgen.c | 2 ++
11 1 file changed, 2 insertions(+)
12
13 diff --git a/scripts/rsync-generation/hashgen.c b/scripts/rsync-generation/hashgen.c
14 index 79d26a9ae7..0a00c215f7 100644
15 --- a/scripts/rsync-generation/hashgen.c
16 +++ b/scripts/rsync-generation/hashgen.c
17 @@ -327,6 +327,8 @@ process_dir(const char *dir)
18 continue;
19 if (strcmp(e->d_name, my_manifest) == 0)
20 continue;
21 + if (strcmp(e->d_name, str_manifest) == 0)
22 + continue;
23 snprintf(path, sizeof(path), "%s/%s", dir, e->d_name);
24 if (!stat(path, &s)) {
25 if (s.st_mode & S_IFDIR) {