summaryrefslogtreecommitdiff
path: root/lang/python
diff options
context:
space:
mode:
authordarcy <darcy>2004-06-12 21:18:31 +0000
committerdarcy <darcy>2004-06-12 21:18:31 +0000
commit5e1e9db3ab1e104a84df78da1b73f1da50520857 (patch)
tree2bbe1cc11cc72b9549c1d4543b9b26618383fa77 /lang/python
parentd12f02bbd5ce37d53a0e658e1008e4644146b57e (diff)
downloadpkgsrc-5e1e9db3ab1e104a84df78da1b73f1da50520857.tar.gz
Add quotes around word "install" in the setup command.
Note that this cannot be changed to ${INSTALL} because it is not the install command but rather an argument to setup.py. While adding the quotes makes no difference to the use of the file, it does keep pkglint quiet. This is even more important because this file is included by many other packages and causes warnings when trying to check new Python extensions.
Diffstat (limited to 'lang/python')
-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 97ab3dd9a68..d8ed0eaebef 100644
--- a/lang/python/extension.mk
+++ b/lang/python/extension.mk
@@ -1,4 +1,4 @@
-# $NetBSD: extension.mk,v 1.10 2003/12/05 19:24:31 recht Exp $
+# $NetBSD: extension.mk,v 1.11 2004/06/12 21:18:31 darcy Exp $
# derive a python version from the package name if possible
# optionally handled quoted package names
@@ -29,7 +29,7 @@ do-build:
do-install:
(cd ${WRKSRC}/${PYSETUPSUBDIR} && ${SETENV} ${MAKE_ENV} ${PYTHONBIN} \
- ${PYSETUP} install ${_PYSETUPINSTALLARGS})
+ ${PYSETUP} "install" ${_PYSETUPINSTALLARGS})
.endif
.if defined(PY_PATCHPLIST)