From af98086bb3600832025a10a7695eb58fc9049f63 Mon Sep 17 00:00:00 2001 From: Momtchil Momtchev Date: Wed, 7 Feb 2024 21:32:21 +0100 Subject: [PATCH] create a python3 link if it does not exist --- build_python.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/build_python.sh b/build_python.sh index 7a07b54..7a7eae6 100644 --- a/build_python.sh +++ b/build_python.sh @@ -45,5 +45,6 @@ if [ ! -d "$1" ] || [ ! -r "${LIBNAME}" ]; then make -j4 install ) rm -f $1/python + [ ! -r $1/bin/python3 ] && ln -s python3 $1/bin/python3.12 ln -s bin/python3 $1/python fi