From 251b27b00f8f764c90dba4041a5cebe60feb7b5a Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Mon, 9 Mar 2009 15:05:32 +0000 Subject: kconfig.pl: throw warnings into stderr instead of stdout git-svn-id: svn://svn.openwrt.org/openwrt/trunk@14807 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- scripts/kconfig.pl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; } -- cgit v1.2.3