]> git.sesse.net Git - vlc/commitdiff
contrib: don't use -arch flag of xcodebuild
authorRafaël Carré <funman@videolan.org>
Fri, 25 Nov 2011 22:30:22 +0000 (17:30 -0500)
committerRafaël Carré <funman@videolan.org>
Fri, 25 Nov 2011 22:31:46 +0000 (17:31 -0500)
It's only available since XCode4 on MacOSX 10.6

contrib/src/bghudappkit/rules.mak
contrib/src/growl/rules.mak
contrib/src/sparkle/rules.mak

index 0f39e04ff6fba508bf2945cbb2c745bb90ae7e5a..6032cb552ecff7cbd0d66818894ecc08755ad2ba 100644 (file)
@@ -20,7 +20,7 @@ bghudappkit: bghudappkit-git.tar.xz .sum-bghudappkit
        $(MOVE)
 
 .bghudappkit: bghudappkit
-       cd $< && xcodebuild -arch $(ARCH) -sdk macosx$(OSX_VERSION)
+       cd $< && xcodebuild -sdk macosx$(OSX_VERSION)
        install_name_tool -change @loader_path/../../../../../../../BGHUDAppKit.framework/Versions/A/BGHUDAppKit \
                                                                @loader_path/../../../../Versions/A/BGHUDAppKit \
                $</build/Release/BGHUDAppKit.framework/Resources/BGHUDAppKitPlugin.ibplugin/Contents/MacOS/BGHUDAppKitPlugin
index 6f3dc9eb1199285002a3093d209048d73d696ac3..292e9a80883f9bfd3ffe03303fe093817902a8ce 100644 (file)
@@ -23,6 +23,6 @@ growl: growl-$(GROWL_VERSION).tar.bz2 .sum-growl
        touch $@
 
 .growl: growl
-       cd $< && xcodebuild -target Growl.framework -configuration Release -arch $(ARCH)
+       cd $< && xcodebuild -target Growl.framework -configuration Release
        cd $< && cp -R -L build/Release/Growl.framework "$(PREFIX)"
        touch $@
index aa4b13820c3b02adf7d83ca0ea072564a3cfefb2..d9bafcb7ba60164ee5bcca76afd899cf1b71a4b2 100644 (file)
@@ -21,6 +21,6 @@ sparkle: sparkle-$(SPARKLE_VERSION).zip .sum-sparkle
        touch $@
 
 .sparkle: sparkle
-       cd $</Extras/Source\ Code && $(MAKE) && xcodebuild -arch $(ARCH)
+       cd $</Extras/Source\ Code && $(MAKE) && xcodebuild
        cd $< && cp -R -L Extras/Source\ Code/build/release/Sparkle.framework "$(PREFIX)"
        touch $@