diff --git a/Patches/ninja-1.10.0-fix-python3.13-pipes-module.patch b/Patches/ninja-1.10.0-fix-python3.13-pipes-module.patch new file mode 100644 index 0000000..9aa853e --- /dev/null +++ b/Patches/ninja-1.10.0-fix-python3.13-pipes-module.patch @@ -0,0 +1,14 @@ +--- configure.py.orig 2026-03-25 16:12:10.647584559 +0800 ++++ configure.py 2026-03-25 16:39:00.122488627 +0800 +@@ -23,7 +23,10 @@ + + from optparse import OptionParser + import os +-import pipes ++try: ++ import pipes ++except ImportError: ++ import shlex as pipes + import string + import subprocess + import sys