aboutsummaryrefslogtreecommitdiff
path: root/trunk/src
diff options
context:
space:
mode:
authorrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2008-12-24 16:03:47 +0000
committerrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2008-12-24 16:03:47 +0000
commit531254e78ecf17a9ee263ccdfe79d211df4bb503 (patch)
tree423ce958d2622b2524548e7ef83bfc6bd8194e56 /trunk/src
parentfad88efce3eec11b5f7d0cf2688a3d6dbd66e0e0 (diff)
downloadsimplepkg-531254e78ecf17a9ee263ccdfe79d211df4bb503.tar.gz
simplepkg-531254e78ecf17a9ee263ccdfe79d211df4bb503.tar.bz2
minor fixes
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@711 04377dda-e619-0410-9926-eae83683ac58
Diffstat (limited to 'trunk/src')
-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