summaryrefslogtreecommitdiff
path: root/lang/python
diff options
context:
space:
mode:
authordarcy <darcy@pkgsrc.org>2004-06-12 21:18:31 +0000
committerdarcy <darcy@pkgsrc.org>2004-06-12 21:18:31 +0000
commit4367394b982efb2e7775d54dc4211bc1c1bf2ee7 (patch)
tree2bbe1cc11cc72b9549c1d4543b9b26618383fa77 /lang/python
parent38f2f2bf21161e25ebe5476328c11f12ac92b983 (diff)
downloadpkgsrc-4367394b982efb2e7775d54dc4211bc1c1bf2ee7.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)