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:
parent
46b9f98d3b
commit
d1e2ce2918
1 changed files with 2 additions and 1 deletions
|
|
@ -12,7 +12,8 @@ if(!-f "apps/version.h") {
|
||||||
exit;
|
exit;
|
||||||
}
|
}
|
||||||
|
|
||||||
@files=`find . -name FILES`;
|
# -L allows find to follow symbolic links
|
||||||
|
@files=`find -L . -name FILES`;
|
||||||
|
|
||||||
my @entries;
|
my @entries;
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue