Commit 0431acd8 authored by Łukasz Stelmach's avatar Łukasz Stelmach Committed by Masahiro Yamada

streamline_config.pl: show the full Kconfig name

Show the very same file name that was passed to open()
in case the operation failed.
Signed-off-by: default avatarŁukasz Stelmach <l.stelmach@samsung.com>
parent c39afe62
......@@ -170,7 +170,7 @@ sub read_kconfig {
$source =~ s/\$\($env\)/$ENV{$env}/;
}
open(my $kinfile, '<', $source) || die "Can't open $kconfig";
open(my $kinfile, '<', $source) || die "Can't open $source";
while (<$kinfile>) {
chomp;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment