From b564248d7b21a83e96d56f4d76f2985b62664db9 Mon Sep 17 00:00:00 2001 From: Andy Fiddaman Date: Sat, 28 Dec 2024 14:46:45 +0000 Subject: [PATCH] Always ignore installed python modules during build --- build/python312/common.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/build/python312/common.sh b/build/python312/common.sh index 32c5b4a91e..aaad88e176 100644 --- a/build/python312/common.sh +++ b/build/python312/common.sh @@ -45,6 +45,8 @@ TMPDIR+="/python$PYVER" DTMPDIR+="/python$PYVER" BASE_TMPDIR=$TMPDIR +PEP518OPTS+=" --ignore-installed" + # Use the same python version for dependency resolution PKGDEPEND="/usr/bin/python$PYTHONVER -Es $PKGDEPEND"