- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
36 lines
1.1 KiB
Diff
36 lines
1.1 KiB
Diff
From 29221ae42e424c6100b8c313d2b61801430c872d Mon Sep 17 00:00:00 2001
|
|
From: =?UTF-8?q?Andreas=20M=C3=BCller=20installed=5Ftests=20is=20false?=
|
|
<schnitzeltony@gmail.com>
|
|
Date: Wed, 27 Oct 2021 20:04:02 +0200
|
|
Subject: [PATCH] meson.build: Do not add dir installed-tests when
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
Upstream-Status: Submitted [https://gitlab.gnome.org/GNOME/gjs/-/merge_requests/690]
|
|
|
|
Signed-off-by: Andreas Müller <schnitzeltony@gmail.com>
|
|
---
|
|
meson.build | 4 +++-
|
|
1 file changed, 3 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/meson.build b/meson.build
|
|
index 3058e8c..06cf8da 100644
|
|
--- a/meson.build
|
|
+++ b/meson.build
|
|
@@ -688,7 +688,9 @@ endif
|
|
|
|
### Tests and test setups ######################################################
|
|
|
|
-subdir('installed-tests')
|
|
+if get_option('installed_tests')
|
|
+ subdir('installed-tests')
|
|
+endif
|
|
|
|
# Note: The test program in test/ needs to be ported
|
|
# to Windows before we can build it on Windows.
|