Skip to content

Instantly share code, notes, and snippets.

@sdevore
Forked from redsweater/gist:1266047
Created October 6, 2011 11:35
Show Gist options
  • Save sdevore/1267198 to your computer and use it in GitHub Desktop.
Save sdevore/1267198 to your computer and use it in GitHub Desktop.
If you ship Growl framework in a Mac App Store target… add this build phase to strip PPC
#!/bin/sh
echo "Stripping PPC from Growl framework..."
cd "${BUILT_PRODUCTS_DIR}/${PRODUCT_NAME}.app/Contents/Frameworks/Growl.framework/Versions/Current"
lipo ./Growl -verify_arch ppc
if test $? -ne 1 ; then
lipo ./Growl -remove ppc -output ./Growl
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment