From 514450bb4e8e687f882f1a2f1cb1e302880533d4 Mon Sep 17 00:00:00 2001 From: Fabian Groffen Date: Wed, 29 Nov 2017 22:33:13 +0100 Subject: 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) { -- cgit v1.2.3