pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/lang/python Add quotes around word "install" in the se...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/c258650a6c9b
branches:  trunk
changeset: 476524:c258650a6c9b
user:      darcy <darcy%pkgsrc.org@localhost>
date:      Sat Jun 12 21:18:31 2004 +0000

description:
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:

 lang/python/extension.mk |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r 7abd24cfe3d7 -r c258650a6c9b lang/python/extension.mk
--- a/lang/python/extension.mk  Sat Jun 12 15:01:37 2004 +0000
+++ b/lang/python/extension.mk  Sat Jun 12 21:18:31 2004 +0000
@@ -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-install:
        (cd ${WRKSRC}/${PYSETUPSUBDIR} && ${SETENV} ${MAKE_ENV} ${PYTHONBIN} \
-        ${PYSETUP} install ${_PYSETUPINSTALLARGS})
+        ${PYSETUP} "install" ${_PYSETUPINSTALLARGS})
 .endif
 
 .if defined(PY_PATCHPLIST)



Home | Main Index | Thread Index | Old Index