if STRIP is not set, don't strip included libraries either

git-svn-id: svn://localhost/ardour2/branches/3.0@8691 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
Paul Davis 2011-02-03 19:20:53 +00:00
parent 69388aff81
commit 487c5f4be6

View File

@ -491,9 +491,11 @@ done
echo
# strip libraries
echo Stripping libraries
find $APPLIB/ -name "*.so*" | xargs strip
find $APPLIB/ -name "*.so*" | xargs chmod a+rx
if test x$STRIP != x ; then
echo Stripping libraries
find $APPLIB/ -name "*.so*" | xargs strip
find $APPLIB/ -name "*.so*" | xargs chmod a+rx
fi
echo "Copying other stuff to $APPDIR ..."