From 12c62f0c8200eee4b6e4b00ec5c1b639dabfb075 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Fri, 1 Apr 2011 19:34:31 +0000 Subject: [PATCH] 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 --- tools/linux_packaging/build | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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