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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;