mirror of
https://github.com/torvalds/linux.git
synced 2024-11-25 13:41:51 +00:00
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: Łukasz Stelmach <l.stelmach@samsung.com>
This commit is contained in:
parent
c39afe6248
commit
0431acd87a
@ -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;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user