summaryrefslogtreecommitdiff
path: root/lang
diff options
context:
space:
mode:
authorrecht <recht>2003-11-01 12:10:00 +0000
committerrecht <recht>2003-11-01 12:10:00 +0000
commitb1a521f631591e3199fbc0befbde5788e46127b8 (patch)
treef5d8198ba20d5d032c3a9b295af796eebdc532e2 /lang
parent9ba0c4d90eb8fa429997a54ba5c1f3fcdb62d58b (diff)
downloadpkgsrc-b1a521f631591e3199fbc0befbde5788e46127b8.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"