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
This commit is contained in:
Jeff Trawick
2000-06-06 00:51:20 +00:00
parent bcbcf75254
commit f888d95c83

View File

@ -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="";;