From 88463fd7db42836ae46ad8d2de4fe6083399a5a2 Mon Sep 17 00:00:00 2001 From: James Cotton Date: Sun, 22 May 2011 12:17:50 -0500 Subject: [PATCH] Small tweak to OSX packaging to get rid of error --- release/osx/libraries | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/release/osx/libraries b/release/osx/libraries index dff0d9e0e..f97b969b8 100755 --- a/release/osx/libraries +++ b/release/osx/libraries @@ -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 \{\} \;