[Libreoffice-commits] .: test/source

Tor Lillqvist tml at kemper.freedesktop.org
Sun Jun 12 09:26:31 PDT 2011


 test/source/cpp/makefile.mk                       |    6 ++++++
 test/source/cpp/unoexceptionprotector/makefile.mk |    6 ++++++
 2 files changed, 12 insertions(+)

New commits:
commit 5b5d30e9f6fa99d2b0c168b3cb0fa00ef3d00cc7
Author: Tor Lillqvist <tml at iki.fi>
Date:   Sun Jun 12 19:25:58 2011 +0300

    Bypass when cross-compiling, at least for now

diff --git a/test/source/cpp/makefile.mk b/test/source/cpp/makefile.mk
index cae88e0..62a6e2c 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 86c8bc6..d3d13e6 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)


More information about the Libreoffice-commits mailing list