From 107b6416edf602859578e7592abb0c4e457936dc Mon Sep 17 00:00:00 2001 From: midipix Date: Tue, 15 Jun 2021 12:43:10 +0000 Subject: project: pydist overhaul: integrated the new m4-based logic. --- project/config/cfgdefs.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'project/config/cfgdefs.sh') diff --git a/project/config/cfgdefs.sh b/project/config/cfgdefs.sh index c76629d..6826af7 100644 --- a/project/config/cfgdefs.sh +++ b/project/config/cfgdefs.sh @@ -82,6 +82,18 @@ cfgdefs_detect_python_version() exit 2 fi + pydist_macros="$mb_project_dir/project/pydist.m4" + pydist_helper="$mb_project_dir/sofort/core/modern.m4" + pydist_srclst="$mb_project_dir/project/variants/$python_major.$python_minor.$python_micro/pydist.in" + + if ! [ -f "$pydist_srclst" ]; then + exit 2 + fi + + if ! m4 "$pydist_helper" "$pydist_macros" "$pydist_srclst" > pydist.mk ; then + exit 2 + fi + python_ver="$python_major.$python_minor" if [ "$mb_package" = '@' ]; then -- cgit v1.2.3