From: nbd Date: Mon, 9 Mar 2009 15:05:32 +0000 (+0000) Subject: kconfig.pl: throw warnings into stderr instead of stdout X-Git-Url: http://git.ozo.com/?p=openwrt-10.03%2F.git;a=commitdiff_plain;h=29ec5d802c648afb89dd4f326bc4752f40ad7416 kconfig.pl: throw warnings into stderr instead of stdout git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14807 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/scripts/kconfig.pl b/scripts/kconfig.pl index 181b35ad4..d22af9fe6 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; }