summaryrefslogtreecommitdiff
path: root/openwrt/scripts
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2006-04-20 00:33:40 +0000
committerFelix Fietkau <nbd@openwrt.org>2006-04-20 00:33:40 +0000
commit6336817a13f2b3dd95232fbbbebe513985a20294 (patch)
tree3677b054b11533b8d442632a176098b619337cdf /openwrt/scripts
parent6d35e9d0f580f95aa7a97366cf5a325543494f2d (diff)
downloadmtk-20170518-6336817a13f2b3dd95232fbbbebe513985a20294.zip
mtk-20170518-6336817a13f2b3dd95232fbbbebe513985a20294.tar.gz
mtk-20170518-6336817a13f2b3dd95232fbbbebe513985a20294.tar.bz2
redirect find stderr to /dev/null in timestamp.pl
SVN-Revision: 3678
Diffstat (limited to 'openwrt/scripts')
-rwxr-xr-xopenwrt/scripts/timestamp.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/openwrt/scripts/timestamp.pl b/openwrt/scripts/timestamp.pl
index f6b06bc..1089221 100755
--- a/openwrt/scripts/timestamp.pl
+++ b/openwrt/scripts/timestamp.pl
@@ -4,7 +4,7 @@ use strict;
sub get_ts($) {
my $path = shift;
my $ts = 0;
- open FIND, "find $path -not -path \\*.svn\\* -and -not -path \\*CVS\\* |";
+ open FIND, "find $path -not -path \\*.svn\\* -and -not -path \\*CVS\\* 2>/dev/null |";
while (<FIND>) {
open FILE, "<$_";
my @stat = stat FILE;