pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/devel/py-distutils Don't start a subshell for no reason.



details:   https://anonhg.NetBSD.org/pkgsrc/rev/67ed96b62a8f
branches:  trunk
changeset: 518977:67ed96b62a8f
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Sun Sep 24 18:25:19 2006 +0000

description:
Don't start a subshell for no reason.

diffstat:

 devel/py-distutils/Makefile |  6 +++---
 1 files changed, 3 insertions(+), 3 deletions(-)

diffs (22 lines):

diff -r 188180ef6083 -r 67ed96b62a8f devel/py-distutils/Makefile
--- a/devel/py-distutils/Makefile       Sun Sep 24 17:40:39 2006 +0000
+++ b/devel/py-distutils/Makefile       Sun Sep 24 18:25:19 2006 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.4 2005/12/05 20:50:07 rillig Exp $
+# $NetBSD: Makefile,v 1.5 2006/09/24 18:25:19 joerg Exp $
 #
 
 DISTNAME=      Distutils-1.0.2
@@ -16,10 +16,10 @@
 PYTHON_DISTUTILS_BOOTSTRAP=    yes
 
 do-build:
-       (cd ${WRKSRC} && ${PYTHONBIN} setup.py build)
+       cd ${WRKSRC} && ${PYTHONBIN} setup.py build
 
 do-install:
-       (cd ${WRKSRC} && ${PYTHONBIN} setup.py install)
+       cd ${WRKSRC} && ${PYTHONBIN} setup.py install
 
 .include "../../lang/python/pyversion.mk"
 .include "../../mk/bsd.pkg.mk"



Home | Main Index | Thread Index | Old Index