Skip to content

Commit 23ef7c2

Browse files
wqh17101oscargus
andauthored
Update setupext.py
fix wrong error msg Co-authored-by: Oscar Gustafsson <[email protected]>
1 parent f377dc4 commit 23ef7c2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setupext.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -630,7 +630,7 @@ def do_custom_build(self, env):
630630
configure_ac = os.path.join(src_path, "builds", "unix", "configure.ac")
631631
if os.path.exists(os.path.join(src_path, "autogen.sh")) \
632632
and not os.path.exists(configure_ac):
633-
print(f"{configure_ac} not exist. Using sh autogen.sh to generate.")
633+
print(f"{configure_ac} does not exist. Using sh autogen.sh to generate.")
634634
subprocess.check_call(["sh", "./autogen.sh"], env=env, cwd=src_path)
635635
env["CFLAGS"] = env.get("CFLAGS", "") + " -fPIC"
636636
configure = [

0 commit comments

Comments
 (0)