summaryrefslogtreecommitdiff
path: root/o3tl
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2011-06-06 11:32:30 +0300
committerTor Lillqvist <tml@iki.fi>2011-06-06 11:32:30 +0300
commit892f1f330264c670404e33ad759246fea489dc57 (patch)
treed3e7f36fe09417b5763e6be06e49187f689f2c89 /o3tl
parent463563853a81499de2259372755b00aa5ec246a7 (diff)
Bypass when cross-compiling in general, not just for iOS
Diffstat (limited to 'o3tl')
-rw-r--r--o3tl/qa/makefile.mk7
1 files changed, 4 insertions, 3 deletions
diff --git a/o3tl/qa/makefile.mk b/o3tl/qa/makefile.mk
index 67dcede5e8c4..14dbe622a30f 100644
--- a/o3tl/qa/makefile.mk
+++ b/o3tl/qa/makefile.mk
@@ -36,7 +36,10 @@ ENABLE_EXCEPTIONS=TRUE
.INCLUDE : settings.mk
-.IF "$(OS)"!="IOS"
+.IF "$(CROSS_COMPILING)"=="YES"
+all:
+ @echo Nothing done when cross-compiling
+.ENDIF
CFLAGSCXX += $(CPPUNIT_CFLAGS)
@@ -70,8 +73,6 @@ SLOFILES=$(SHL1OBJS)
# --- Targets ------------------------------------------------------
.ENDIF # L10N_framework
-.ENDIF
-
.INCLUDE : target.mk
# --- Enable test execution in normal build ------------------------