public inbox for linux-kbuild@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] headerdep: fix option processing for -I
@ 2009-03-29 13:01 Uwe Kleine-König
  2009-03-29 13:33 ` Vegard Nossum
  2009-03-29 18:26 ` Uwe Kleine-König
  0 siblings, 2 replies; 4+ messages in thread
From: Uwe Kleine-König @ 2009-03-29 13:01 UTC (permalink / raw)
  To: linux-kbuild; +Cc: Vegard Nossum, Sam Ravnborg

-I takes an argument.  Without this change only a 1 is added to
@opt_include which is not helpful.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Cc: Vegard Nossum <vegard.nossum@gmail.com>
Cc: Sam Ravnborg <sam@ravnborg.org>

---
 scripts/headerdep.pl |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/scripts/headerdep.pl b/scripts/headerdep.pl
index 97399da..536408e 100755
--- a/scripts/headerdep.pl
+++ b/scripts/headerdep.pl
@@ -19,7 +19,7 @@ my $opt_graph;
 	version	=> \&version,
 
 	all	=> \$opt_all,
-	I	=> \@opt_include,
+	"I:s"	=> \@opt_include,
 	graph	=> \$opt_graph,
 );
 
-- 
tg: (5d80f8e..) t/misc/fix_include_opt_for_headerdep (depends on: linus/master)

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-04-05 19:48 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-29 13:01 [PATCH] headerdep: fix option processing for -I Uwe Kleine-König
2009-03-29 13:33 ` Vegard Nossum
2009-03-29 18:26 ` Uwe Kleine-König
2009-04-05 19:50   ` Sam Ravnborg

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox