summaryrefslogtreecommitdiff
path: root/acinclude.m4
diff options
context:
space:
mode:
authorJeff Trawick <trawick@apache.org>2000-06-06 00:51:20 +0000
committerJeff Trawick <trawick@apache.org>2000-06-06 00:51:20 +0000
commitf888d95c837ec45ec20dfb4c4acc8c08bc83ba52 (patch)
tree1ba3ce24920d8389368bde88eaff7575c1539b4d /acinclude.m4
parentbcbcf75254983392a0c33b86ae5f9726b5007ec6 (diff)
downloadhttpd-f888d95c837ec45ec20dfb4c4acc8c08bc83ba52.tar.gz
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
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m43
1 files changed, 1 insertions, 2 deletions
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="";;