From a66f1269b2156ae2f9ad8cf0ba54423bf810af67 Mon Sep 17 00:00:00 2001 From: deadwood Date: Fri, 26 Feb 2021 15:24:31 +0100 Subject: [PATCH] Missed change for restoring Development directory --- tools/elf2hunk/elf2hunk.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/elf2hunk/elf2hunk.c b/tools/elf2hunk/elf2hunk.c index ba6fcf5dd5..31ecb0bdc4 100644 --- a/tools/elf2hunk/elf2hunk.c +++ b/tools/elf2hunk/elf2hunk.c @@ -1071,8 +1071,8 @@ static int copy(const char *src, const char *dst, int flags); static BOOL valid_dir(const char *dir) { - /* Don't convert anything in a Developer directory */ - if (strcasecmp(dir, "Developer") == 0) + /* Don't convert anything in a Development directory */ + if (strcasecmp(dir, "Development") == 0) return FALSE; return TRUE; }