summaryrefslogtreecommitdiff
path: root/gnu/packages
diff options
context:
space:
mode:
authorHartmut Goebel <h.goebel@crazy-compilers.com>2026-01-30 00:31:20 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-07 12:28:51 +0100
commitabbade3c60b039788ee1855112792c0c561ff79a (patch)
tree286a4c8cf5054b3e905d7a998a7a68efd64f1eff /gnu/packages
parent63fbbd42dff2334dae62691bfc55f29bea0fa756 (diff)
gnu: Fix build of trytond modules.
The pyproject-build-system changed the order of phases. Thus prepare-check must go before sanity-check. To hopefully be more resilient to future changes, add it relatively to wrap, which comes before sanity-check. * gnu/packages/tryton.scm (tryton-phases)[prepare-check]: Move after wrap. Change-Id: I2b4662313e430fa32989d326f862458f5d7c4e49 Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu/packages')
-rw-r--r--gnu/packages/tryton.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/gnu/packages/tryton.scm b/gnu/packages/tryton.scm
index b5e22a15568..d1de08750bc 100644
--- a/gnu/packages/tryton.scm
+++ b/gnu/packages/tryton.scm
@@ -198,7 +198,7 @@ filterwarnings =
"Return the phases for building and testing a Tryton module named MODULE.
If present, pass EXTRA-TEST-ARGUMENTS to pytest as well."
#~(modify-phases %standard-phases
- (add-before 'check 'prepare-check
+ (add-after 'wrap 'prepare-check
(lambda* (#:key tests? #:allow-other-keys)
(when tests?
(setenv "DB_NAME" ":memory:")