fixdep: remove unneeded code and comments about *.ver files
[sfrench/cifs-2.6.git] / scripts / basic / fixdep.c
index 9ba47b0a47b9311cda6a80eedf256502bd748fb4..ad2041817985c6205e78b9b41794ae44e697dba3 100644 (file)
  * dependencies on include/config/my/option.h for every
  * CONFIG_MY_OPTION encountered in any of the prerequisites.
  *
- * It will also filter out all the dependencies on *.ver. We need
- * to make sure that the generated version checksum are globally up
- * to date before even starting the recursive build, so it's too late
- * at this point anyway.
- *
  * We don't even try to really parse the header files, but
  * merely grep, i.e. if CONFIG_FOO is mentioned in a comment, it will
  * be picked up as well. It's not a problem with respect to
@@ -299,8 +294,7 @@ static void *read_file(const char *filename)
 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, ".ver");
+              str_ends_with(s, len, "include/generated/autoksyms.h");
 }
 
 /*