diff options
| author | Greg Hogan <code@greghogan.com> | 2025-05-08 16:16:15 +0000 |
|---|---|---|
| committer | Greg Hogan <code@greghogan.com> | 2025-08-04 04:11:22 +0000 |
| commit | 4b11d0526cebf3b64a14444c277473a86a4104c8 (patch) | |
| tree | 1af5db8f9b8f9aa12bb11df46c8bb049d1899329 | |
| parent | f4ce754028280131fe9c373ee5b94c26d28742bb (diff) | |
gnu: kiconthemes: Enable testing.
* gnu/packages/kde-frameworks.scm (kiconthemes)[arguments]<#:phases>:
Add 'enable-testing phase.
Change-Id: I7d8e600f19518fa8d5ba09cfd11a345449aadbd6
| -rw-r--r-- | gnu/packages/kde-frameworks.scm | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/gnu/packages/kde-frameworks.scm b/gnu/packages/kde-frameworks.scm index cc1d68fc6b..3fba17c688 100644 --- a/gnu/packages/kde-frameworks.scm +++ b/gnu/packages/kde-frameworks.scm @@ -3804,6 +3804,11 @@ window does not need focus for them to be activated.") (arguments (list #:phases #~(modify-phases %standard-phases + (add-after 'unpack 'enable-testing + (lambda _ + (substitute* "CMakeLists.txt" + (("if \\(BUILD_TESTING\\)" all) + (string-append all "\n enable_testing()"))))) (add-before 'check 'check-setup (lambda* (#:key inputs #:allow-other-keys) (setenv "HOME" (getcwd)) |
