x264: fix prefixes

This commit is contained in:
2025-03-24 22:17:06 +08:00
parent d2df459709
commit 572b949af4

View File

@@ -5,7 +5,7 @@ from subprocess import run
def get_mc_path(build): def get_mc_path(build):
return build / "src" / "common" / "mc.c" return build / "x264_src" / "common" / "mc.c"
def get_ref_add_pragma(mc_lines): def get_ref_add_pragma(mc_lines):
@@ -60,7 +60,7 @@ def make(build, spec_env):
run( run(
[ [
"make", "make",
"TARGET=s", "TARGET=x264_s",
], ],
check=True, check=True,
env=spec_env, env=spec_env,