Skip to content

Commit 0431acd

Browse files
Łukasz Stelmachmasahir0y
authored andcommitted
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 <[email protected]>
1 parent c39afe6 commit 0431acd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/kconfig/streamline_config.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -170,7 +170,7 @@ sub read_kconfig {
170170
$source =~ s/\$\($env\)/$ENV{$env}/;
171171
}
172172

173-
open(my $kinfile, '<', $source) || die "Can't open $kconfig";
173+
open(my $kinfile, '<', $source) || die "Can't open $source";
174174
while (<$kinfile>) {
175175
chomp;
176176

0 commit comments

Comments
 (0)