From: Jeff Trawick Date: Tue, 6 Jun 2000 00:51:20 +0000 (+0000) Subject: Fix typo in configure script when checking for mod_so. bash X-Git-Tag: APACHE_2_0_ALPHA_5~434 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f888d95c837ec45ec20dfb4c4acc8c08bc83ba52;p=apache Fix typo in configure script when checking for mod_so. bash doesn't seem to have a problem but /bin/sh on Solaris does. Symptom: "./configure: test: unknown operator ==" git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85434 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/acinclude.m4 b/acinclude.m4 index 4f3ac37f36..ebca67d5d3 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -316,8 +316,7 @@ AC_DEFUN(APACHE_MODULE,[ shared=yes;; *) MODLIST="$MODLIST ifelse($4,,$1,$4)" - if test "$1" == "so"; then - echo "so" + if test "$1" = "so"; then sharedobjs=yes fi shared="";;