summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Hogan <code@greghogan.com>2024-10-22 18:09:22 +0000
committerGreg Hogan <code@greghogan.com>2025-07-30 16:28:10 +0000
commit3fd2f8aeeeff7e9dd10d283636a66eb9fac73224 (patch)
treedf62af5f73fb238659d340cb23f9aeb9a78b7953
parentf737cce410c92b5cbf98d195ad626b435f3d4b35 (diff)
gnu: dbus-cxx: Use #:test-exclude.
* gnu/packages/glib.scm (dbus-cxx)[arguments] <#:test-exclude>: Move exclude regex here from 'check phase. <#:phases>: Remove 'check phase. Change-Id: I6d2b17be9c2d1575dbebc28baf91990c7a903211
-rw-r--r--gnu/packages/glib.scm10
1 files changed, 2 insertions, 8 deletions
diff --git a/gnu/packages/glib.scm b/gnu/packages/glib.scm
index 88fa17ccf1..db9f965125 100644
--- a/gnu/packages/glib.scm
+++ b/gnu/packages/glib.scm
@@ -1273,14 +1273,8 @@ programming language. It also provides the @command{dbusxx-xml2cpp} and
"-DENABLE_TOOLS=ON"
"-DENABLE_GLIB_SUPPORT=ON"
"-DTOOLS_BUNDLED_CPPGENERATE=OFF")
- #:phases
- #~(modify-phases %standard-phases
- (replace 'check
- (lambda* (#:key tests? #:allow-other-keys)
- (when tests?
- ;; There is no /etc/machine-id file in the build
- ;; environment.
- (invoke "ctest" "-E" "test-machine-uuid-method")))))))
+ ;; There is no /etc/machine-id file in the build environment.
+ #:test-exclude "test-machine-uuid-method"))
;; These are propagated due to being referenced in headers and pkg-config
;; .pc files.
(propagated-inputs (list glib libsigc++))