--- Cython-3.0.10/runtests.py.orig +++ Cython-3.0.10/runtests.py @@ -2108,12 +2108,12 @@ 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) @@ -2132,7 +2132,7 @@ try: subprocess.check_output([ - "make", + "gmake", "PYTHON='%s'" % sys.executable, "CYTHON='%s'" % cython, "LIBDIR1='%s'" % libdir,