diff options
author | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-03-09 15:05:32 +0000 |
---|---|---|
committer | nbd <nbd@3c298f89-4303-0410-b956-a3cf2f4a3e73> | 2009-03-09 15:05:32 +0000 |
commit | 29ec5d802c648afb89dd4f326bc4752f40ad7416 (patch) | |
tree | d9c4af35101c862bd8e6b755cfac567ed405c582 /scripts | |
parent | 12ef7b471260cb85ef8f5e635138bf0af93b94dc (diff) |
kconfig.pl: throw warnings into stderr instead of stdout
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14807 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'scripts')
-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 181b35ad47..d22af9fe62 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; } |