summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2011-04-01 19:34:31 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2011-04-01 19:34:31 +0000
commit12c62f0c8200eee4b6e4b00ec5c1b639dabfb075 (patch)
tree2460986001165d24984e79a0e1d48e7d1ac769d7 /tools
parent041fd2ce8ca79907f50dfd49527f228b6a37a8c4 (diff)
even more potential fixes for partial stripping of a linux bundle
git-svn-id: svn://localhost/ardour2/branches/3.0@9255 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'tools')
-rwxr-xr-xtools/linux_packaging/build5
1 files changed, 4 insertions, 1 deletions
diff --git a/tools/linux_packaging/build b/tools/linux_packaging/build
index 2da7d6dba5..4ed5aa36ac 100755
--- a/tools/linux_packaging/build
+++ b/tools/linux_packaging/build
@@ -512,8 +512,11 @@ while [ true ] ; do
else
echo "Copying dependant lib $dep (required by ${parent})"
cp $dep $Libraries
- deplibs="$deplibs $base"
fi
+ if echo $dep | grep -sq '^/' ; then
+ # absolute path, candidate for stripping
+ deplibs="$deplibs $base"
+ fi
missing=true
fi
done