diff options
author | blogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2014-01-19 17:27:04 +0000 |
---|---|---|
committer | blogic <blogic@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2014-01-19 17:27:04 +0000 |
commit | ccf4ad3751ab67d6fdf4d89046187e5f91341274 (patch) | |
tree | ee3560212ee51a4bf7f39454a7e46129d8f208bb /scripts/kconfig.pl | |
parent | 313b9b5f06d9a49b380bc0a25c84edc6667cdc67 (diff) |
scripts/kconfig.pl: Indicate which file we couldn't open
Signed-off-by: Daniel Colascione <dancol@dancol.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@39327 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts/kconfig.pl')
-rwxr-xr-x | scripts/kconfig.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/kconfig.pl b/scripts/kconfig.pl index b91cdf397a..45c565e7a9 100755 --- a/scripts/kconfig.pl +++ b/scripts/kconfig.pl @@ -29,7 +29,7 @@ sub load_config($$) { my $mod_plus = shift; my %config; - open FILE, "$file" or die "can't open file"; + open FILE, "$file" or die "can't open file '$file'"; while (<FILE>) { chomp; /^$PREFIX(.+?)=(.+)/ and do { |