aboutsummaryrefslogtreecommitdiff
path: root/tools/EventClients
diff options
context:
space:
mode:
authordavilla <davilla@svn>2009-12-02 00:41:07 +0000
committerdavilla <davilla@svn>2009-12-02 00:41:07 +0000
commitfe07a3e7ffc0c6c81b4e673865c97ec36cb46a34 (patch)
tree62a3702f70748e7820644603605478473026bc2e /tools/EventClients
parentfdd4b17ba52169a675a55f2c9ce45f6a9e812e3c (diff)
[osx] disable building XBMCHelper on ppc
git-svn-id: https://xbmc.svn.sourceforge.net/svnroot/xbmc/trunk@25199 568bbfeb-2a22-0410-94d2-cc84cf5bfa90
Diffstat (limited to 'tools/EventClients')
-rw-r--r--tools/EventClients/Clients/OSXRemote/Makefile.in4
1 files changed, 4 insertions, 0 deletions
diff --git a/tools/EventClients/Clients/OSXRemote/Makefile.in b/tools/EventClients/Clients/OSXRemote/Makefile.in
index 4b66f568db..fbf423041e 100644
--- a/tools/EventClients/Clients/OSXRemote/Makefile.in
+++ b/tools/EventClients/Clients/OSXRemote/Makefile.in
@@ -10,9 +10,13 @@ else
endif
all:
+ifeq ($(findstring x86-osx,$(ARCH)), x86-osx)
xcodebuild -sdk macosx10.4 -configuration $(CONFIGURATION)
+endif
clean:
+ifeq ($(findstring x86-osx,$(ARCH)), x86-osx)
xcodebuild clean -configuration $(CONFIGURATION)
+endif
.PHONY: all clean