All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bob Miller <bob.miller@znyx.com>
To: torvalds@transmeta.com, kaos@ocs.com.au
Cc: linux-kernel@vger.kernel.org, jamal.hadi@znyx.com
Subject: Possible change to ./scripts/split-include.c
Date: Mon, 08 Oct 2001 09:05:09 -0700	[thread overview]
Message-ID: <3BC1CEB5.8060703@znyx.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 532 bytes --]

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





[-- Attachment #2: afile-1 --]
[-- Type: text/plain, Size: 362 bytes --]

--- 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" );
 


             reply	other threads:[~2001-10-08 16:01 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2001-10-08 16:05 Bob Miller [this message]
2001-10-08 18:48 ` Possible change to ./scripts/split-include.c Linus Torvalds

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=3BC1CEB5.8060703@znyx.com \
    --to=bob.miller@znyx.com \
    --cc=jamal.hadi@znyx.com \
    --cc=kaos@ocs.com.au \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@transmeta.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.