mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-07 22:25:46 +01:00
fix a problem with stripping dependent libs
git-svn-id: svn://localhost/ardour2/branches/3.0@12186 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
437ed14c45
commit
6d723920f6
1 changed files with 4 additions and 0 deletions
|
|
@ -542,10 +542,14 @@ echo
|
|||
# strip libraries
|
||||
if test x$STRIP = xall ; then
|
||||
echo Stripping all libraries
|
||||
# Must be writable so that we can strip
|
||||
find $APPLIB/ -name "*.so*" | xargs chmod u+w
|
||||
# and strip ...
|
||||
find $APPLIB/ -name "*.so*" | xargs strip
|
||||
elif test x$STRIP = xsome ; then
|
||||
echo Stripping dependent libraries
|
||||
for l in $deplibs ; do
|
||||
chmod u+w $APPLIB/$l
|
||||
strip $APPLIB/$l
|
||||
done
|
||||
fi
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue