From: Uwe Kleine-König Date: Sun, 29 Mar 2009 13:01:47 +0000 (+0200) Subject: kbuild: fix option processing for -I in headerdep X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=79ff807cf23ffb527f3f35bdececf56cabcdee07;p=sagit-ice-cold%2Fkernel_xiaomi_msm8998.git 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 Acked-by: Vegard Nossum Signed-off-by: Sam Ravnborg --- diff --git a/scripts/headerdep.pl b/scripts/headerdep.pl index 97399da89ef2..b7f6c560e24d 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, );