summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2007-01-16 22:59:25 +0000
committerDaniel Stenberg <daniel@haxx.se>2007-01-16 22:59:25 +0000
commitd1e2ce291897853eb04cf0d112a92471ed73e90d (patch)
treeb8102c42c217097e6c8d074a1c7457b95ad1f1ba /tools
parent46b9f98d3bd5c1ef2e4369202399cb5c59ba866a (diff)
downloadrockbox-d1e2ce291897853eb04cf0d112a92471ed73e90d.tar.gz
rockbox-d1e2ce291897853eb04cf0d112a92471ed73e90d.zip
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
Diffstat (limited to 'tools')
-rwxr-xr-xtools/release3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/release b/tools/release
index 40a2b40bed..1a0b245a2f 100755
--- a/tools/release
+++ b/tools/release
@@ -12,7 +12,8 @@ if(!-f "apps/version.h") {
12 exit; 12 exit;
13} 13}
14 14
15@files=`find . -name FILES`; 15# -L allows find to follow symbolic links
16@files=`find -L . -name FILES`;
16 17
17my @entries; 18my @entries;
18 19