diff options
author | Felix Fietkau <nbd@openwrt.org> | 2009-03-09 15:05:32 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2009-03-09 15:05:32 +0000 |
commit | 7f4bc03adba090389160e0a5d86d72b006572c99 (patch) | |
tree | eddfc2669a26b71bd64f181e0136e01295716d0b /scripts/kconfig.pl | |
parent | b6f0cb53669e8b96fd15e6913faf1697f602a6b8 (diff) | |
download | mtk-20170518-7f4bc03adba090389160e0a5d86d72b006572c99.zip mtk-20170518-7f4bc03adba090389160e0a5d86d72b006572c99.tar.gz mtk-20170518-7f4bc03adba090389160e0a5d86d72b006572c99.tar.bz2 |
kconfig.pl: throw warnings into stderr instead of stdout
SVN-Revision: 14807
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 181b35a..d22af9f 100755 --- a/scripts/kconfig.pl +++ b/scripts/kconfig.pl @@ -27,7 +27,7 @@ sub load_config($) { next; }; /^#/ and next; - /^(.+)$/ and print "WARNING: can't parse line: $1\n"; + /^(.+)$/ and warn "WARNING: can't parse line: $1\n"; } return \%config; } |