summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Olbrich <m.olbrich@pengutronix.de>2019-07-03 09:03:22 +0200
committerMichael Olbrich <m.olbrich@pengutronix.de>2019-07-03 09:03:26 +0200
commitbc0fa493958984e7f943c441c36c78b7988eb032 (patch)
tree4a9450e25e7db7d89b9f2b7ec13a716b3368770e
parent61cbded657f1c5c86dc3d406a38a7e291842cc53 (diff)
downloadptxdist-bc0fa493958984e7f943c441c36c78b7988eb032.tar.gz
ptxdist-bc0fa493958984e7f943c441c36c78b7988eb032.tar.xz
Rules: don't allow meson to download anything
Without this, meson might implicitly download missing dependencies as subprojects. Signed-off-by: Michael Olbrich <m.olbrich@pengutronix.de>
-rw-r--r--rules/pre/Rules.make2
1 files changed, 2 insertions, 0 deletions
diff --git a/rules/pre/Rules.make b/rules/pre/Rules.make
index f99adc20d..5d085bd25 100644
--- a/rules/pre/Rules.make
+++ b/rules/pre/Rules.make
@@ -250,6 +250,7 @@ HOST_PYTHON_INSTALL := install --prefix=/.
CROSS_MESON_USR := \
--cross-file '${PTXDIST_MESON_CROSS_FILE}' \
+ --wrap-mode nodownload \
-Dbackend=ninja \
-Dbuildtype=debugoptimized \
-Dlibdir=$(CROSS_LIB_DIR) \
@@ -319,6 +320,7 @@ HOST_CMAKE_OPT_SYSROOT := \
-DCMAKE_TOOLCHAIN_FILE='${PTXDIST_CMAKE_TOOLCHAIN_HOST}'
HOST_MESON_OPT := \
+ --wrap-mode nodownload \
-Dbackend=ninja \
-Dbuildtype=debugoptimized \
-Dlibdir=lib \