projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d848223
)
kbuild: fix option processing for -I in headerdep
author
Uwe Kleine-König
<u.kleine-koenig@pengutronix.de>
Sun, 29 Mar 2009 13:01:47 +0000
(15:01 +0200)
committer
Sam Ravnborg
<sam@ravnborg.org>
Sat, 11 Apr 2009 06:18:07 +0000
(08:18 +0200)
-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>
Acked-by: Vegard Nossum <vegard.nossum@gmail.com>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
scripts/headerdep.pl
patch
|
blob
|
history
diff --git
a/scripts/headerdep.pl
b/scripts/headerdep.pl
index 97399da89ef2ae3779a088d34515e6c05d10ab40..b7f6c560e24d2e88aabb36aea8272465eb94936c 100755
(executable)
--- 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,
);