diff options
author | Felix Fietkau <nbd@openwrt.org> | 2007-08-30 21:12:39 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2007-08-30 21:12:39 +0000 |
commit | 5f748a6c24863b08652d835c2858acfd83a84238 (patch) | |
tree | 7492870ce899ef7791c89ecb4a2b570f9d637be5 /scripts | |
parent | 9566fb1f0701759d499e1579a340943ff5a7422d (diff) | |
download | upstream-5f748a6c24863b08652d835c2858acfd83a84238.tar.gz upstream-5f748a6c24863b08652d835c2858acfd83a84238.tar.bz2 upstream-5f748a6c24863b08652d835c2858acfd83a84238.zip |
clean up recursive dependency handling, use timestamp.pl again, because it saves memory and execution time
SVN-Revision: 8558
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/timestamp.pl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/timestamp.pl b/scripts/timestamp.pl index 89ec4e70c3..6bfa3ea1f0 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 (<FIND>) { 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/) { |