From 5f748a6c24863b08652d835c2858acfd83a84238 Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Thu, 30 Aug 2007 21:12:39 +0000 Subject: clean up recursive dependency handling, use timestamp.pl again, because it saves memory and execution time SVN-Revision: 8558 --- scripts/timestamp.pl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'scripts/timestamp.pl') 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 () { 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/) { -- cgit v1.2.3