summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTor Lillqvist <tml@iki.fi>2011-06-12 19:25:58 +0300
committerTor Lillqvist <tml@iki.fi>2011-06-12 19:25:58 +0300
commit5b5d30e9f6fa99d2b0c168b3cb0fa00ef3d00cc7 (patch)
tree4607b416c4e5f8d36e9ab870c10d641c3693373a
parentf0c047b25a26339ddcde1287328d9ad0cde69011 (diff)
Bypass when cross-compiling, at least for now
-rw-r--r--test/source/cpp/makefile.mk6
-rw-r--r--test/source/cpp/unoexceptionprotector/makefile.mk6
2 files changed, 12 insertions, 0 deletions
diff --git a/test/source/cpp/makefile.mk b/test/source/cpp/makefile.mk
index cae88e039..62a6e2c35 100644
--- a/test/source/cpp/makefile.mk
+++ b/test/source/cpp/makefile.mk
@@ -32,6 +32,12 @@ VISIBILITY_HIDDEN = TRUE
.INCLUDE: settings.mk
+.IF "$(CROSS_COMPILING)"=="YES"
+all:
+ @echo Nothing done when cross-compiling
+.ENDIF
+
+# --- Files --------------------------------------------------------
CDEFS += -DOOO_DLLIMPLEMENTATION_TEST
CFLAGSCXX += $(CPPUNIT_CFLAGS)
diff --git a/test/source/cpp/unoexceptionprotector/makefile.mk b/test/source/cpp/unoexceptionprotector/makefile.mk
index 86c8bc6fb..d3d13e646 100644
--- a/test/source/cpp/unoexceptionprotector/makefile.mk
+++ b/test/source/cpp/unoexceptionprotector/makefile.mk
@@ -32,6 +32,12 @@ VISIBILITY_HIDDEN = TRUE
.INCLUDE: settings.mk
+.IF "$(CROSS_COMPILING)"=="YES"
+all:
+ @echo Nothing done when cross-compiling
+.ENDIF
+
+# --- Files --------------------------------------------------------
DLLPRE =
CFLAGSCXX += $(CPPUNIT_CFLAGS)