Skip to content

Commit 79ff807

Browse files
Uwe Kleine-Königsravnborg
authored andcommitted
kbuild: fix option processing for -I in headerdep
-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>
1 parent d848223 commit 79ff807

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/headerdep.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
version => \&version,
2020

2121
all => \$opt_all,
22-
I => \@opt_include,
22+
"I=s" => \@opt_include,
2323
graph => \$opt_graph,
2424
);
2525

0 commit comments

Comments
 (0)