From 6bff5a56cea8b8e042fa312bace270fd409c492d Mon Sep 17 00:00:00 2001 From: Linus Torvalds Date: Sat, 5 Oct 2002 06:27:03 -0700 Subject: [PATCH] Make wildcard dependency filenames be relative, not absolute. That also matches the other dependency filenames these days, and makes the tree more position-independent. --- scripts/fixdep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/fixdep.c b/scripts/fixdep.c index eff63c439424..76a392090115 100644 --- a/scripts/fixdep.c +++ b/scripts/fixdep.c @@ -207,7 +207,7 @@ void use_config(char *m, int slen) else *p = tolower((unsigned char)*p); } - printf(" $(wildcard %s/include/config/%s.h) \\\n", topdir, s); + printf(" $(wildcard include/config/%s.h) \\\n", s); } void parse_config_file(char *map, size_t len) -- 2.39.5