]> granicus.if.org Git - apache/commitdiff
Fix typo in configure script when checking for mod_so. bash
authorJeff Trawick <trawick@apache.org>
Tue, 6 Jun 2000 00:51:20 +0000 (00:51 +0000)
committerJeff Trawick <trawick@apache.org>
Tue, 6 Jun 2000 00:51:20 +0000 (00:51 +0000)
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

acinclude.m4

index 4f3ac37f365f05e9d191f2b12c50de363fe893b2..ebca67d5d31c60f47a535c3a93f40d79a5bee44b 100644 (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="";;