diff options
author | tg <tg@FreeBSD.org> | 2000-11-20 20:30:14 +0800 |
---|---|---|
committer | tg <tg@FreeBSD.org> | 2000-11-20 20:30:14 +0800 |
commit | d2648a3953bfb5975a771ccceffb203283864e7e (patch) | |
tree | 0478c5ebac594ee56a8b173826d172f68f59b212 | |
parent | dd9cc6c2f26ed9a52d93caa5aebe36e10622175e (diff) | |
download | freebsd-ports-gnome-d2648a3953bfb5975a771ccceffb203283864e7e.tar.gz freebsd-ports-gnome-d2648a3953bfb5975a771ccceffb203283864e7e.tar.zst freebsd-ports-gnome-d2648a3953bfb5975a771ccceffb203283864e7e.zip |
Fix stupid typo (wrong path in py-xml dependency). <:-(
-rw-r--r-- | Mk/bsd.python.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Mk/bsd.python.mk b/Mk/bsd.python.mk index cffc0850ea4f..63f0a110e0c9 100644 --- a/Mk/bsd.python.mk +++ b/Mk/bsd.python.mk @@ -82,7 +82,7 @@ PYTHON_PORTVERSION!= (${PYTHON_VERSION} -c 'import string, sys; \ # Python-2.0 .if ${PYTHON_VERSION} == "python2.0" PYDISTUTILS= ${PYTHON_LIBDIR}/distutils/core.py:${PYTHON_PORTSDIR} -PYXML= ${PYTHON_LIBDIR}/_xmlplus/__init__.py:${PORTSDIR}/textproc/py-xml +PYXML= ${PYTHON_SITELIBDIR}/_xmlplus/__init__.py:${PORTSDIR}/textproc/py-xml PYTHON_DISTFILE= BeOpen-Python-2.0.tar.gz PYTHON_PORTSDIR= ${PORTSDIR}/lang/python @@ -93,7 +93,7 @@ PYTHON_WRKSRC= ${WRKDIR}/Python-2.0 # Python-1.5 .elif ${PYTHON_VERSION} == "python1.5" PYDISTUTILS= ${PYTHON_LIBDIR}/site-packages/distutils/core.py:${PORTSDIR}/misc/py-distutils -PYXML= ${PYTHON_LIBDIR}/site-packages/xml/__init__.py:${PORTSDIR}/textproc/py-xml +PYXML= ${PYTHON_SITELIBDIR}/xml/__init__.py:${PORTSDIR}/textproc/py-xml PYTHON_DISTFILE= py152.tgz PYTHON_PORTSDIR= ${PORTSDIR}/lang/python15 |