diff options
| author | Linus Torvalds <torvalds@home.transmeta.com> | 2002-10-05 06:27:03 -0700 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-10-05 06:27:03 -0700 |
| commit | 6bff5a56cea8b8e042fa312bace270fd409c492d (patch) | |
| tree | 6a79fbda2d4a74e85a27a38d667858758c96ea4e /scripts | |
| parent | 552ed6c54cdee08d85f05b398bd1c7701378c384 (diff) | |
Make wildcard dependency filenames be relative, not absolute.
That also matches the other dependency filenames these days,
and makes the tree more position-independent.
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/fixdep.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |
