1
0
Fork 0
forked from len0rd/rockbox

allow find to follow symbolic links (mostly since the server is using that

a lot)


git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12032 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Daniel Stenberg 2007-01-16 22:59:25 +00:00
parent 46b9f98d3b
commit d1e2ce2918

View file

@ -12,7 +12,8 @@ if(!-f "apps/version.h") {
exit;
}
@files=`find . -name FILES`;
# -L allows find to follow symbolic links
@files=`find -L . -name FILES`;
my @entries;