From b65b787999ac669457fec5a6e802b565d97febe6 Mon Sep 17 00:00:00 2001 From: Michael Williamson Date: Fri, 10 Nov 2023 21:10:48 +0000 Subject: [PATCH] Use bash in makefile --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index d94b339..125d16c 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"], + ["make", "SHELL=bash -x"], ]) def _build_lib(self, tarball_path, lib_dir, commands):