diff options
author | recht <recht@pkgsrc.org> | 2003-11-01 12:10:00 +0000 |
---|---|---|
committer | recht <recht@pkgsrc.org> | 2003-11-01 12:10:00 +0000 |
commit | 585a55d24c58f06e347aa102002636188f126835 (patch) | |
tree | f5d8198ba20d5d032c3a9b295af796eebdc532e2 /lang | |
parent | 7a861ad684378317ec5c6bce1c36c895cb4509c8 (diff) | |
download | pkgsrc-585a55d24c58f06e347aa102002636188f126835.tar.gz |
Fix breakage caused by PKGNAME_REQD quoting in bsd.pkg.mk.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/python/extension.mk | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lang/python/extension.mk b/lang/python/extension.mk index 0f2590beff5..2f40445c595 100644 --- a/lang/python/extension.mk +++ b/lang/python/extension.mk @@ -1,8 +1,8 @@ -# $NetBSD: extension.mk,v 1.5 2003/09/14 16:43:45 recht Exp $ +# $NetBSD: extension.mk,v 1.6 2003/11/01 12:10:00 recht Exp $ # derive a python version from the package name if possible .if defined(PKGNAME_REQD) -PYTHON_VERSION_REQD?= ${PKGNAME_REQD:C/^py([^-]*)-.*/\1/} +PYTHON_VERSION_REQD?= ${PKGNAME_REQD:C/^\'?py([^-]*)-.*/\1/} .endif .include "../../lang/python/pyversion.mk" |