diff options
| author | Daniel Stenberg <daniel@haxx.se> | 2007-01-16 22:59:25 +0000 |
|---|---|---|
| committer | Daniel Stenberg <daniel@haxx.se> | 2007-01-16 22:59:25 +0000 |
| commit | d1e2ce291897853eb04cf0d112a92471ed73e90d (patch) | |
| tree | b8102c42c217097e6c8d074a1c7457b95ad1f1ba | |
| parent | 46b9f98d3bd5c1ef2e4369202399cb5c59ba866a (diff) | |
| download | rockbox-d1e2ce291897853eb04cf0d112a92471ed73e90d.zip rockbox-d1e2ce291897853eb04cf0d112a92471ed73e90d.tar.gz rockbox-d1e2ce291897853eb04cf0d112a92471ed73e90d.tar.bz2 rockbox-d1e2ce291897853eb04cf0d112a92471ed73e90d.tar.xz | |
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
| -rwxr-xr-x | tools/release | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/release b/tools/release index 40a2b40..1a0b245 100755 --- a/tools/release +++ b/tools/release @@ -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; |