From 60803eb70a8efb5a3a3400ceb452a8e5d44292ef Mon Sep 17 00:00:00 2001 From: Michael Williamson Date: Fri, 10 Nov 2023 21:18:24 +0000 Subject: [PATCH] Use /bin/bash -x as shell in makefile --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 125d16c..eedca0a 100644 --- a/setup.py +++ b/setup.py @@ -40,7 +40,7 @@ def _build_libjq(self): lib_dir=jq_lib_dir, commands=[ ["sh", "./configure", "CFLAGS=-fPIC -pthread", "--disable-maintainer-mode", "--with-oniguruma=builtin"], - ["make", "SHELL=bash -x"], + ["make", "SHELL=/bin/bash -x"], ]) def _build_lib(self, tarball_path, lib_dir, commands):