From: Felix Fietkau 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.lede-project.org./?a=commitdiff_plain;h=7f4bc03adba090389160e0a5d86d72b006572c99;p=openwrt%2Fstaging%2Fjow.git kconfig.pl: throw warnings into stderr instead of stdout SVN-Revision: 14807 --- 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; }