projects
/
openwrt.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
kconfig.pl: throw warnings into stderr instead of stdout
[openwrt.git]
/
scripts
/
kconfig.pl
diff --git
a/scripts/kconfig.pl
b/scripts/kconfig.pl
index
181b35a
..
d22af9f
100755
(executable)
--- 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;
}
This page took
0.022756 seconds
and
4
git commands to generate.