aboutsummaryrefslogtreecommitdiff
path: root/trunk/src/mkbuild
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/src/mkbuild')
-rwxr-xr-xtrunk/src/mkbuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/trunk/src/mkbuild b/trunk/src/mkbuild
index cd89fbe..bb5a9bf 100755
--- a/trunk/src/mkbuild
+++ b/trunk/src/mkbuild
@@ -896,7 +896,7 @@ function get_dist_file {
echo "Trying to find $(basename $file) at $folders..."
for path in $folders; do
- for candidate in $(find $path -name $(basename $file)); do
+ for candidate in $(find $path -name $(basename $file) | grep -v "/\.svn"); do
if [ ! -z "$candidate" ]; then
break 2
fi