From e805c1b3c1322d3cf40e7233e2882b1f608a82d4 Mon Sep 17 00:00:00 2001 From: Sascha Schumann Date: Fri, 23 Feb 2001 16:49:58 +0000 Subject: [PATCH] Fix another instance of the == bug. --- ext/fribidi/config.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ext/fribidi/config.m4 b/ext/fribidi/config.m4 index 8af1b6a979..2421459130 100644 --- a/ext/fribidi/config.m4 +++ b/ext/fribidi/config.m4 @@ -16,7 +16,7 @@ if test "$PHP_FRIBIDI" != "no"; then dnl if module was requested with default path of fribidi installation then dnl $PHP_FRIBIDI will be "yes" - if test "$PHP_FRIBIDI" == "yes"; then + if test "$PHP_FRIBIDI" = "yes"; then PHP_FRIBIDI="/usr/local" fi -- 2.50.1