aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/kconfig.pl
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2009-03-09 15:05:32 +0000
committerFelix Fietkau <nbd@openwrt.org>2009-03-09 15:05:32 +0000
commit251b27b00f8f764c90dba4041a5cebe60feb7b5a (patch)
treed9c4af35101c862bd8e6b755cfac567ed405c582 /scripts/kconfig.pl
parent1eb7b2098dd9b794a6ef35ad412121e93d390e61 (diff)
downloadmaster-187ad058-251b27b00f8f764c90dba4041a5cebe60feb7b5a.tar.gz
master-187ad058-251b27b00f8f764c90dba4041a5cebe60feb7b5a.tar.bz2
master-187ad058-251b27b00f8f764c90dba4041a5cebe60feb7b5a.zip
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/kconfig.pl')
-rwxr-xr-xscripts/kconfig.pl2
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;
}