Commit 6bff5a56 authored by Linus Torvalds's avatar Linus Torvalds

Make wildcard dependency filenames be relative, not absolute.

That also matches the other dependency filenames these days,
and makes the tree more position-independent.
parent 552ed6c5
......@@ -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)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment