summaryrefslogtreecommitdiff
path: root/lang
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
commitf2eae255dc43369b311b0cad77db565b7072402c (patch)
tree2bbe1cc11cc72b9549c1d4543b9b26618383fa77 /lang
parentfa7c92ccdd040be04b80bf58ef0fbfe7e3ba25e8 (diff)
downloadpkgsrc-f2eae255dc43369b311b0cad77db565b7072402c.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')
-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)