Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 79ff807c authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Sam Ravnborg
Browse files

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: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Acked-by: default avatarVegard Nossum <vegard.nossum@gmail.com>
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent d8482238
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -19,7 +19,7 @@ my $opt_graph;
	version	=> \&version,

	all	=> \$opt_all,
	I	=> \@opt_include,
	"I=s"	=> \@opt_include,
	graph	=> \$opt_graph,
);