In Mk/Uses/python.mk we have: DEPENDS_ARGS+= PYTHON_VERSION=${PYTHON_VERSION} where PYTHON_VERSION is python2.7 or python3.x But autoconf based ports use PYTHON_VERSION with a different meaning: [ax_prog_python_version=`${PYTHON} -c "import sys; sys.stdout.write(sys.version[[:3]])" 2>/dev/null`; AC_SUBST( [PYTHON_VERSION], [$ax_prog_python_version]) so there, PYTHON_VERSION is 2.7 or 3.x This commit workarounded for devel/py*-gobject3 but other ports are likely affected: https://svnweb.freebsd.org/changeset/ports/374402
antoine, Any considerations and/or suggestions for a renamed variable? Is this a good time to also introduce a prefixed variable namespace?
(In reply to Kubilay Kocak from comment #1) > Any considerations and/or suggestions for a renamed variable? FLAVOR ? bapt@ is working on something but no ETA as it breaks portupgrade / portmaster
Fixed in ports r522485