diff options
author | Marius Kintel <marius@kintel.net> | 2013-03-02 15:39:13 (GMT) |
---|---|---|
committer | Marius Kintel <marius@kintel.net> | 2013-03-02 15:39:13 (GMT) |
commit | 0498ebbef7b8c95c60f3b4a12c0490ebdabbf5a5 (patch) | |
tree | 388165e7c639ec6170018ca15acfaaa27fe66998 /scripts/macosx-build-dependencies.sh | |
parent | c56d8c1e3ad4b95de7232b9ccc1211a01cda2ea4 (diff) |
Sparkle build tweak
Diffstat (limited to 'scripts/macosx-build-dependencies.sh')
-rwxr-xr-x | scripts/macosx-build-dependencies.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/macosx-build-dependencies.sh b/scripts/macosx-build-dependencies.sh index 57dd3bf..8f32ac3 100755 --- a/scripts/macosx-build-dependencies.sh +++ b/scripts/macosx-build-dependencies.sh @@ -343,8 +343,9 @@ build_sparkle() if $OPTION_32BIT; then SPARKLE_EXTRA_FLAGS="-arch i386" fi + xcodebuild -project Sparkle.xcodeproj clean xcodebuild -project Sparkle.xcodeproj -scheme Sparkle -configuration Release -arch x86_64 $SPARKLE_EXTRA_FLAGS - rm -r $DEPLOYDIR/lib/Sparkle.framework + rm -rf $DEPLOYDIR/lib/Sparkle.framework cp -Rf build/Release/Sparkle.framework $DEPLOYDIR/lib/ install_name_tool -id $DEPLOYDIR/lib/Sparkle.framework/Versions/A/Sparkle $DEPLOYDIR/lib/Sparkle.framework/Sparkle } |