2013-09-26 17:14:40 +02:00

31 lines
1.2 KiB
Plaintext

$NetBSD: patch-ab,v 1.3 2012/08/12 21:08:46 wiz Exp $
Use correct make for pkgsrc.
--- runtests.py.orig 2012-04-21 11:34:22.000000000 +0000
+++ runtests.py
@@ -1100,12 +1100,12 @@ class EmbedTest(unittest.TestCase):
self.old_dir = os.getcwd()
os.chdir(self.working_dir)
os.system(
- "make PYTHON='%s' clean > /dev/null" % sys.executable)
+ "gmake PYTHON='%s' clean > /dev/null" % sys.executable)
def tearDown(self):
try:
os.system(
- "make PYTHON='%s' clean > /dev/null" % sys.executable)
+ "gmake PYTHON='%s' clean > /dev/null" % sys.executable)
except:
pass
os.chdir(self.old_dir)
@@ -1126,7 +1126,7 @@ class EmbedTest(unittest.TestCase):
cython = os.path.join(CY3_DIR, cython)
cython = os.path.abspath(os.path.join('..', '..', cython))
self.assert_(os.system(
- "make PYTHON='%s' CYTHON='%s' LIBDIR1='%s' test > make.output" % (sys.executable, cython, libdir)) == 0)
+ "gmake PYTHON='%s' CYTHON='%s' LIBDIR1='%s' test > make.output" % (sys.executable, cython, libdir)) == 0)
try:
os.remove('make.output')
except OSError: