fmt: update to 11.1.2
[oi-userland.git] / components / python / Cython / patches / 03-gmake.patch
blob647bc576a7441953ee39529a927f66748308193c
1 --- cython-3.0.11/runtests.py.orig
2 +++ cython-3.0.11/runtests.py
3 @@ -2112,12 +2112,12 @@
4 self.old_dir = os.getcwd()
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)
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)
18 @@ -2136,7 +2136,7 @@
20 try:
21 subprocess.check_output([
22 - "make",
23 + "gmake",
24 "PYTHON='%s'" % sys.executable,
25 "CYTHON='%s'" % cython,
26 "LIBDIR1='%s'" % libdir,