diff options
author | ache <ache@FreeBSD.org> | 1999-06-13 00:12:00 +0800 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1999-06-13 00:12:00 +0800 |
commit | 1d0b737132ac1393829d552897899d8aa440c1ba (patch) | |
tree | c8d517e0b84a371549bdc0e6cc4c918272fba9e9 /www | |
parent | e40975a056050d31b9e90f3c4a265db72f1e1422 (diff) | |
download | freebsd-ports-gnome-1d0b737132ac1393829d552897899d8aa440c1ba.tar.gz freebsd-ports-gnome-1d0b737132ac1393829d552897899d8aa440c1ba.tar.zst freebsd-ports-gnome-1d0b737132ac1393829d552897899d8aa440c1ba.zip |
use find instead of finddept because of prune cutt of whole tree
use _ instead of $_
Diffstat (limited to 'www')
-rw-r--r-- | www/WebMagick/files/patch-aa | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/www/WebMagick/files/patch-aa b/www/WebMagick/files/patch-aa index f35829232261..686a88b89e2d 100644 --- a/www/WebMagick/files/patch-aa +++ b/www/WebMagick/files/patch-aa @@ -1,5 +1,5 @@ --- webmagick.in.orig Sun Dec 20 01:03:12 1998 -+++ webmagick.in Thu Mar 25 05:12:58 1999 ++++ webmagick.in Sat Jun 12 20:01:35 1999 @@ -128,6 +128,7 @@ $opt_dircolorlink, $opt_dircolorvlink, @@ -48,12 +48,21 @@ 'mapnetscape!' => \$opt_mapnetscape, 'maptype=s' => \$opt_maptype, 'maxgif=i' => \$opt_maxgif, +@@ -872,7 +878,7 @@ + # for each directory ignoring hidden directories + use File::Find; + print( "Processing directory tree $opt_srcdir ...\n" ) if $opt_debug; +- finddepth( \&wanted, $opt_srcdir ); ++ find( \&wanted, $opt_srcdir ); + } else { + print( "Processing directory $opt_srcdir ...\n" ) if $opt_debug; + $sourceDirectory = $opt_srcdir; @@ -936,7 +942,7 @@ sub wanted { my($dev,$ino,$mode,$nlink,$uid,$gid); ($dev,$ino,$mode,$nlink,$uid,$gid) = lstat($_); - if ( -d $_ && !/^\..+/ ) { -+ if ( -d $_ && -w $_ && !/^\..+/ ) { ++ if ( -d _ && -w _ && !/^\..+/ ) { if( $_ ne '.' && get_rc_var('.', 'opt_prune', 0) ) { $File::Find::prune=1; # following funny logic is to avoid warnings about $prune |