mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 23:35:03 +01:00
attempt to fix the strip club
This commit is contained in:
parent
9ad49ca5e5
commit
cda08d1605
1 changed files with 4 additions and 4 deletions
|
|
@ -513,17 +513,17 @@ echo
|
|||
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
|
||||
find $APPLIB/ -name "*.so*" -print0 | xargs -0 chmod u+w
|
||||
# and strip ...
|
||||
find $APPLIB/ -name "*.so*" | xargs strip
|
||||
find $APPLIB/ -name "*.so*" -print0 | xargs -0 strip -s
|
||||
elif test x$STRIP = xsome ; then
|
||||
echo Stripping dependent libraries
|
||||
for l in $deplibs ; do
|
||||
chmod u+w $APPLIB/$l
|
||||
strip $APPLIB/$l
|
||||
strip -s $APPLIB/$l
|
||||
done
|
||||
fi
|
||||
find $APPLIB/ -name "*.so*" | xargs chmod a+rx
|
||||
find $APPLIB/ -name "*.so*" -print0 | xargs -0 chmod a+rx
|
||||
|
||||
echo "Copying other stuff to $APPDIR ..."
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue