summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorrecht <recht@pkgsrc.org>2003-11-01 12:10:00 +0000
committerrecht <recht@pkgsrc.org>2003-11-01 12:10:00 +0000
commit9f4f9fb68e9b811f2ff8583727988e04c455e438 (patch)
treef5d8198ba20d5d032c3a9b295af796eebdc532e2 /lang
parentaa41d6d35a6d9d6c779e20b92ec50779a17e220c (diff)
downloadpkgsrc-9f4f9fb68e9b811f2ff8583727988e04c455e438.tar.gz
Fix breakage caused by PKGNAME_REQD quoting in bsd.pkg.mk.
Diffstat (limited to 'lang')
-rw-r--r--lang/python/extension.mk4
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"