X-Git-Url: http://git.ozo.com/?a=blobdiff_plain;f=scripts%2Ftimestamp.pl;h=90d1fa799ae5e4e5dd423ab0c3ab8c4f230aee93;hb=add5d6ec82704eed13c26f7b90074f72c7d1ed62;hp=89ec4e70c310b9a81c888c0978aae1bc41456eff;hpb=e9b5e692d53f003042ced14f67a7f4603b77edea;p=openwrt-10.03%2F.git diff --git a/scripts/timestamp.pl b/scripts/timestamp.pl index 89ec4e70c..90d1fa799 100755 --- a/scripts/timestamp.pl +++ b/scripts/timestamp.pl @@ -13,7 +13,7 @@ sub get_ts($$) { my $options = shift; my $ts = 0; my $fn = ""; - open FIND, "find $path -not -path \\*.svn\\* -and -not -path \\*CVS\\* $options 2>/dev/null |"; + open FIND, "find $path -type f -and -not -path \\*.svn\\* -and -not -path \\*CVS\\* $options 2>/dev/null |"; while () { chomp; my $file = $_; @@ -36,7 +36,7 @@ while (@ARGV > 0) { my $path = shift @ARGV; if ($path =~ /^-x/) { my $str = shift @ARGV; - $options{"findopts"} .= " -and -not -path \\*".$str."\\*" + $options{"findopts"} .= " -and -not -path '".$str."'" } elsif ($path =~ /^-f/) { $options{"findopts"} .= " -follow"; } elsif ($path =~ /^-n/) { @@ -47,7 +47,7 @@ while (@ARGV > 0) { } else { my ($tmp, $fname) = get_ts($path, $options{"findopts"}); if ($tmp > $ts) { - if ($options{'-f'}) { + if ($options{'-F'}) { $n = $fname; } else { $n = $path;