1
0
mirror of https://bitbucket.org/librepilot/librepilot.git synced 2025-02-20 10:54:14 +01:00

Small tweak to OSX packaging to get rid of error

This commit is contained in:
James Cotton 2011-05-22 12:17:50 -05:00
parent 958807e4c3
commit 88463fd7db

View File

@ -20,7 +20,7 @@ do
done
# should be redundant but some libs missed by main app and macdeployqt
for f in ${QT_LIBS} SDL
for f in ${QT_LIBS}
do
echo "Copying ${f}"
cp -r /Library/Frameworks/${f}.framework "${APP}/Contents/Frameworks/"
@ -44,4 +44,4 @@ done
echo "Deleting unnecessary files"
find "${APP}/Contents/Frameworks" -iname "current" -exec rm -rf \{\} \;
find "${APP}/Contents/Frameworks" -iname "4.0" -exec rm -rf \{\} \;
find "${APP}/Contents/Frameworks" -iname "*_debug*" -exec rm -rf \{\} \;
find "${APP}/Contents/Frameworks" -iname "*_debug" -exec rm -rf \{\} \;