Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2016-06-11 05:48:21 +0300
committerZoltan Varga <vargaz@gmail.com>2016-06-11 05:48:27 +0300
commitfe50acb6ff5ac22801980f53f85513f3a9ce8c5f (patch)
tree16207ddb383fbf75eb9f84143f555dab351aa097 /Makefile.am
parentd21e1be2b1a87726c70396e2543e16e35343681f (diff)
[runtime] Avoid building the tools dir when cross-compiling, some tools don't seem to compile.
Diffstat (limited to 'Makefile.am')
-rw-r--r--Makefile.am9
1 files changed, 8 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 5e0c053956a..0df27c54ea9 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -4,7 +4,14 @@ AM_CFLAGS = $(WERROR_CFLAGS)
MONOTOUCH_SUBDIRS = $(libgc_dir) eglib/src mono
-SUBDIRS = po $(libgc_dir) eglib mono $(ikvm_native_dir) support data runtime scripts man samples tools msvc $(docs_dir) acceptance-tests llvm
+# Some tools might not build when cross-compiling
+if CROSS_COMPILING
+tools_dir =
+else
+tools_dir = tools
+endif
+
+SUBDIRS = po $(libgc_dir) eglib mono $(ikvm_native_dir) support data runtime scripts man samples $(tools_dir) msvc $(docs_dir) acceptance-tests llvm
# Keep in sync with SUBDIRS
DIST_SUBDIRS = m4 po $(libgc_dir) eglib mono ikvm-native support data runtime scripts man samples tools msvc docs acceptance-tests llvm