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
diff --git a/tools/release b/tools/release
index 40a2b40..1a0b245 100755
--- a/tools/release
+++ b/tools/release
@@ -12,7 +12,8 @@
     exit;
 }
 
-@files=`find . -name FILES`;
+# -L allows find to follow symbolic links
+@files=`find -L . -name FILES`;
 
 my @entries;