Possible change to ./scripts/split-include.c

From: Bob Miller (bob.miller@znyx.com)
Date: Mon Oct 08 2001 - 11:05:09 EST


We are using CVS to keep track of the Linux kernels. I am trying to
solve a problem where split-include clobbers our CVS directory under
./include/config. I made a small change to split-include.c that only
finds files that are header files(.h). However, I am unsure of the
history of split-include, and am concerned about possible side effects.

If this change is reasonable, could you consider merging it into future
kernels. Attached is a diff -u for the change to split-include.c

Thanks,
Bob Miller
bobm@znyx.com


--- split-include.c,orig Fri Oct 5 08:34:34 2001
+++ split-include.c Fri Oct 5 08:42:53 2001
@@ -188,7 +188,7 @@
      * So by having an initial \n, strstr will find exact matches.
      */
 
- fp_find = popen("find * -type f -print", "r");
+ fp_find = popen("find * -type f -name \"*.h\" -print", "r");
     if (fp_find == 0)
         ERROR_EXIT( "find" );
 

-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Mon Oct 15 2001 - 21:00:18 EST