2021-11-25 16:23:47

by Łukasz Stelmach

[permalink] [raw]
Subject: [PATCH] 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]>
---
scripts/kconfig/streamline_config.pl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl
index 1a5fea0519eb..3387ad7508f7 100755
--- a/scripts/kconfig/streamline_config.pl
+++ b/scripts/kconfig/streamline_config.pl
@@ -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;

--
2.30.2



2021-11-26 08:08:03

by Masahiro Yamada

[permalink] [raw]
Subject: Re: [PATCH] streamline_config.pl: show the full Kconfig name

On Fri, Nov 26, 2021 at 1:21 AM Łukasz Stelmach <[email protected]> wrote:
>
> Show the very same file name that was passed to open()
> in case the operation failed.
>
> Signed-off-by: Łukasz Stelmach <[email protected]>
> ---

Applied to linux-kbuild. Thanks.


> scripts/kconfig/streamline_config.pl | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/scripts/kconfig/streamline_config.pl b/scripts/kconfig/streamline_config.pl
> index 1a5fea0519eb..3387ad7508f7 100755
> --- a/scripts/kconfig/streamline_config.pl
> +++ b/scripts/kconfig/streamline_config.pl
> @@ -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;
>
> --
> 2.30.2
>


--
Best Regards
Masahiro Yamada