commit:     514450bb4e8e687f882f1a2f1cb1e302880533d4
Author:     Fabian Groffen <grobian <AT> gentoo <DOT> org>
AuthorDate: Wed Nov 29 21:33:13 2017 +0000
Commit:     Fabian Groffen <grobian <AT> gentoo <DOT> 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) {

Reply via email to