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 <[email protected]> Acked-by: Vegard Nossum <[email protected]> Signed-off-by: Sam Ravnborg <[email protected]>
diff --git a/scripts/headerdep.pl b/scripts/headerdep.pl index 97399da..b7f6c56 100755 --- a/scripts/headerdep.pl +++ b/scripts/headerdep.pl
@@ -19,7 +19,7 @@ version => \&version, all => \$opt_all, - I => \@opt_include, + "I=s" => \@opt_include, graph => \$opt_graph, );