diff options
author | Sam Ravnborg <sam@ravnborg.org> | 2007-03-20 16:30:23 -0400 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2007-05-02 14:58:09 -0400 |
commit | 4be40e22233cfe6254bbf039ec09a5d7bff2ad14 (patch) | |
tree | 53ba8d9a523b04df2fb59167136858e5f665b971 /scripts/mod | |
parent | 95e30f9593ebf39e26227a20ae8d9f160c50fb67 (diff) |
kbuild: do not emit src version warning for non-modules
modpost is now called with .o files that are not modules.
So do not warn if there is no corresponding .mod
file listing .o files (in .tmp_versions/).
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts/mod')
-rw-r--r-- | scripts/mod/sumversion.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/scripts/mod/sumversion.c b/scripts/mod/sumversion.c index 8a2875689e4d..6873d5af80d5 100644 --- a/scripts/mod/sumversion.c +++ b/scripts/mod/sumversion.c | |||
@@ -397,10 +397,9 @@ void get_src_version(const char *modname, char sum[], unsigned sumlen) | |||
397 | (int) strlen(basename) - 2, basename); | 397 | (int) strlen(basename) - 2, basename); |
398 | 398 | ||
399 | file = grab_file(filelist, &len); | 399 | file = grab_file(filelist, &len); |
400 | if (!file) { | 400 | if (!file) |
401 | warn("could not find versions for %s\n", filelist); | 401 | /* not a module or .mod file missing - ignore */ |
402 | return; | 402 | return; |
403 | } | ||
404 | 403 | ||
405 | sources = strchr(file, '\n'); | 404 | sources = strchr(file, '\n'); |
406 | if (!sources) { | 405 | if (!sources) { |