From 8a83319491bef6103796591cfe6659eb0bc0a204 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lorenz=20H=C3=BCdepohl?= <dev@stellardeath.org> Date: Thu, 30 Jul 2020 13:55:50 +0200 Subject: [PATCH] Fix creation of home: repos Repos were missing reference to the home: 'System' repo --- mpcdf_common.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mpcdf_common.py b/mpcdf_common.py index 3ca1420..3d2db60 100644 --- a/mpcdf_common.py +++ b/mpcdf_common.py @@ -750,7 +750,9 @@ Macros: repo("System", (("software", distribution),)) for compiler in compilers + pgis: - if project != "software": + if project.startswith("home:"): + dependencies = ((project, "System"),) + elif project != "software": dependencies = (("software", distribution),) else: dependencies = () -- GitLab