Marcel Telka
2024-04-05 a885899322f8424d6d708e5c3143b6c43488446d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
--- 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,