diff options
author | jlam <jlam> | 2002-09-21 23:46:45 +0000 |
---|---|---|
committer | jlam <jlam> | 2002-09-21 23:46:45 +0000 |
commit | f657dcb9d40d75572cc4d6babcbb719f9616f545 (patch) | |
tree | 697974df9adeedbe3b04d377f1c3143f916bf1ab /textproc/pyxml | |
parent | a2d478624567e00e879b26d6be18b39e42534fc7 (diff) | |
download | pkgsrc-f657dcb9d40d75572cc4d6babcbb719f9616f545.tar.gz |
Strip the ".buildlink" from the names of the python application and
extension Makefile fragments, because they really don't have anything to
do with the buildlink[12] frameworks. Change all the Makefiles that use
application.buildlink.mk and extension.buildlink.mk to use application.mk
and extension.mk instead.
Diffstat (limited to 'textproc/pyxml')
-rw-r--r-- | textproc/pyxml/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/textproc/pyxml/Makefile b/textproc/pyxml/Makefile index a2262be00d1..d8f6f3c9218 100644 --- a/textproc/pyxml/Makefile +++ b/textproc/pyxml/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.11 2002/09/18 11:54:06 drochner Exp $ +# $NetBSD: Makefile,v 1.12 2002/09/21 23:46:59 jlam Exp $ # DISTNAME= PyXML-0.8.1 @@ -30,6 +30,6 @@ PYTHON_PATCH_SCRIPTS= ${PYXML_SCRIPTS:S/$/${PYVERSSUFFIX}/g} PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX} .include "../../textproc/expat/buildlink.mk" -.include "../../lang/python/extension.buildlink.mk" -.include "../../lang/python/application.buildlink.mk" +.include "../../lang/python/extension.mk" +.include "../../lang/python/application.mk" .include "../../mk/bsd.pkg.mk" |