]> xenbits.xensource.com Git - unikraft/unikraft.git/commitdiff
build: Adjust fixdep to the changed config.h location
authorMarco Schlumpp <marco@unikraft.io>
Mon, 14 Aug 2023 14:01:21 +0000 (16:01 +0200)
committerUnikraft <monkey@unikraft.io>
Tue, 15 Aug 2023 14:31:55 +0000 (14:31 +0000)
PR unikraft/unikraft#1034 moved the header to a different location, causing
full rebuilds for every `make` invocation.

Signed-off-by: Marco Schlumpp <marco@unikraft.io>
Reviewed-by: Stefan Jumarea <stefanjumarea02@gmail.com>
Reviewed-by: Maria Sfiraiala <maria.sfiraiala@gmail.com>
Approved-by: Razvan Deaconescu <razvand@unikraft.io>
Tested-by: Unikraft CI <monkey@unikraft.io>
GitHub-Closes: #1055

support/kconfig/fixdep.c

index 97afb706266ea299703b0ec38738f8584a8d4351..4299beab93ce1aac1641509ac96631a767115e1a 100644 (file)
@@ -269,7 +269,7 @@ static int is_ignored_file(const char *s, int len)
 {
        return str_ends_with(s, len, "include/generated/autoconf.h") ||
               str_ends_with(s, len, "include/generated/autoksyms.h") ||
-              str_ends_with(s, len, "build/include/uk/_config.h") ||
+              str_ends_with(s, len, "build/include/uk/bits/config.h") ||
               str_ends_with(s, len, ".ver");
 }