From 516fa22ddeaba85a681dbf15eeb7ae3da68bf54f Mon Sep 17 00:00:00 2001 From: Jordan Pickwell <4682321+jpickwell@users.noreply.github.com> Date: Fri, 12 Jan 2024 12:16:07 -0600 Subject: [PATCH] fix: PHP_WITHOUT_PCRE_JIT logic If `PHP_WITHOUT_PCRE_JIT` is not set (default value of `no`) or if it is explicitly set to `no`, then this means we want PCRE JIT support. The previous logic did the opposite. --- bin/install | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/install b/bin/install index c40be12..38049f9 100755 --- a/bin/install +++ b/bin/install @@ -186,8 +186,6 @@ construct_configure_options() { fi if [ "${PHP_WITHOUT_PCRE_JIT:-no}" != "no" ]; then - configure_options="$configure_options" - else configure_options="$configure_options --without-pcre-jit" fi