Marcel Telka
2024-04-05 a885899322f8424d6d708e5c3143b6c43488446d
commit | author | age
a88589 1 --- Cython-3.0.10/runtests.py.orig
MT 2 +++ Cython-3.0.10/runtests.py
3 @@ -2108,12 +2108,12 @@
be554f 4          self.old_dir = os.getcwd()
MT 5          os.chdir(self.working_dir)
6          os.system(
7 -            "make PYTHON='%s' clean > /dev/null" % sys.executable)
8 +            "gmake PYTHON='%s' clean > /dev/null" % sys.executable)
9  
10      def tearDown(self):
11          try:
12              os.system(
13 -                "make PYTHON='%s' clean > /dev/null" % sys.executable)
14 +                "gmake PYTHON='%s' clean > /dev/null" % sys.executable)
15          except:
16              pass
17          os.chdir(self.old_dir)
a88589 18 @@ -2132,7 +2132,7 @@
80dabe 19  
MT 20          try:
be554f 21              subprocess.check_output([
MT 22 -                    "make",
23 +                    "gmake",
24                      "PYTHON='%s'" % sys.executable,
25                      "CYTHON='%s'" % cython,
26                      "LIBDIR1='%s'" % libdir,