[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
bug#50299: [PATCH v4 24/25] gnu: extra-cmake-modules: Don't run tests wh
From: |
Maxime Devos |
Subject: |
bug#50299: [PATCH v4 24/25] gnu: extra-cmake-modules: Don't run tests when cross-compiling. |
Date: |
Fri, 31 Dec 2021 12:15:06 +0000 |
* gnu/packages/kde-frameworks.scm
(extra-cmake-modules)[arguments]<#:tests?>: Set to #false when
cross-compiling.
---
gnu/packages/kde-frameworks.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm
index 65937f8970..aa88d140f5 100644
--- a/gnu/packages/kde-frameworks.scm
+++ b/gnu/packages/kde-frameworks.scm
@@ -106,7 +106,8 @@
'()
`(("qtbase" ,qtbase-5)))) ;for tests (needs qmake)
(arguments
- `(#:tests? ,(not (null? (package-native-inputs this-package)))
+ `(#:tests? ,(and (not (%current-target-system))
+ (not (null? (package-native-inputs this-package))))
#:phases
(modify-phases %standard-phases
(add-after 'unpack 'fix-lib-path
--
2.30.2
- bug#50299: [PATCH v4 13/25] gnu: ruby-ffi-rzmq: Respect #:tests?., (continued)
- bug#50299: [PATCH v4 13/25] gnu: ruby-ffi-rzmq: Respect #:tests?., Maxime Devos, 2021/12/31
- bug#50299: [PATCH v4 16/25] gnu: perl-unicode-utf8: Run tests conditionally., Maxime Devos, 2021/12/31
- bug#50299: [PATCH v4 22/25] gnu: pjproject: Run tests conditionally., Maxime Devos, 2021/12/31
- bug#50299: [PATCH v4 21/25] gnu: belcard: Run tests conditionally., Maxime Devos, 2021/12/31
- bug#50299: [PATCH v4 01/25] lint: check-tests-true: Allow #:tests? #t for some build systems., Maxime Devos, 2021/12/31
- bug#50299: [PATCH v4 11/25] gnu: ruby-yard-with-tests: Run tests conditionally., Maxime Devos, 2021/12/31
- bug#50299: [PATCH v4 18/25] gnu: python2-empy: Run tests conditionally., Maxime Devos, 2021/12/31
- bug#50299: [PATCH v4 20/25] gnu: lablgtk: Run tests conditionally., Maxime Devos, 2021/12/31
- bug#50299: [PATCH v4 19/25] gnu: python2-promise: Run tests conditionally., Maxime Devos, 2021/12/31
- bug#50299: [PATCH v4 25/25] gnu: ghc-bsb-http-chunked: Don't run tests when cross-compiling., Maxime Devos, 2021/12/31
- bug#50299: [PATCH v4 24/25] gnu: extra-cmake-modules: Don't run tests when cross-compiling.,
Maxime Devos <=
- bug#50299: [PATCH v4 03/25] gnu: lean: Add bash-minimal., Maxime Devos, 2021/12/31
- bug#50299: [PATCH v4 04/25] gnu: swi-prolog: Move native-inputs to inputs where appropriate., Maxime Devos, 2021/12/31
- bug#50299: [PATCH v4 08/25] gnu: swi-prolog: Use cross-compiled bash in shebangs., Maxime Devos, 2021/12/31
- bug#50299: [PATCH v4 23/25] gnu: tdlib: Run tests conditionally., Maxime Devos, 2021/12/31
- bug#50299: [PATCH v4 10/25] gnu: swi-prolog: Correct reference to 'bin/swi-prolog'., Maxime Devos, 2021/12/31
- bug#50299: [PATCH v4 14/25] gnu: go-1.16: Don't run tests when cross-compiling., Maxime Devos, 2021/12/31
- bug#50299: [PATCH v4 12/25] gnu: ruby-ffi-rzmq: Run tests conditionally., Maxime Devos, 2021/12/31
- bug#50299: [PATCH v4 02/25] gnu: lean: Don't run tests when cross-compiling., Maxime Devos, 2021/12/31
- bug#50299: [PATCH v4 06/25] gnu: swi-prolog: Make configuration wok when cross-compiling., Maxime Devos, 2021/12/31
- bug#50299: [PATCH v4 07/25] gnu: swi-prolog: Don't use 'cc'., Maxime Devos, 2021/12/31