From 9b3ee1ce19f2f6d8ca6de8c953628a4b221f29c5 Mon Sep 17 00:00:00 2001 From: Michael Williamson Date: Fri, 10 Nov 2023 20:54:19 +0000 Subject: [PATCH] Run configure using sh --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 73f8b94..d94b339 100644 --- a/setup.py +++ b/setup.py @@ -39,7 +39,7 @@ def _build_libjq(self): tarball_path=jq_lib_tarball_path, lib_dir=jq_lib_dir, commands=[ - ["./configure", "CFLAGS=-fPIC -pthread", "--disable-maintainer-mode", "--with-oniguruma=builtin"], + ["sh", "./configure", "CFLAGS=-fPIC -pthread", "--disable-maintainer-mode", "--with-oniguruma=builtin"], ["make"], ])