]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
Addition to r1652955: Use "=" in combination
authorRainer Jung <rjung@apache.org>
Mon, 19 Jan 2015 12:34:29 +0000 (12:34 +0000)
committerRainer Jung <rjung@apache.org>
Mon, 19 Jan 2015 12:34:29 +0000 (12:34 +0000)
with "test" instead of "==".

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1652985 13f79535-47bb-0310-9956-ffa450edef68

Makefile.in

index fa8b3f0917217dc5b081f5fe7c8bdf9505756d2d..670c1132be4d8f14f7f1f85cd57bebc0f46fdfbd 100644 (file)
@@ -78,11 +78,11 @@ install-conf:
                                                if test "$(LOAD_ALL_MODULES)" = "yes"; then \
                                                        loading_disabled=""; \
                                                fi; \
-                                               if test $$j == "cgid" -a "$$have_cgi" == "1"; then \
+                                               if test $$j = "cgid" -a "$$have_cgi" = "1"; then \
                                                echo "<IfModule !mpm_prefork_module>"; \
                                                echo "    $${loading_disabled}LoadModule $${j}_module $(rel_libexecdir)/mod_$${j}.so"; \
                                                echo "</IfModule>"; \
-                                               elif test $$j == "cgi" -a "$$have_cgid" == "1"; then \
+                                               elif test $$j = "cgi" -a "$$have_cgid" = "1"; then \
                                                echo "<IfModule mpm_prefork_module>"; \
                                                echo "    $${loading_disabled}LoadModule $${j}_module $(rel_libexecdir)/mod_$${j}.so"; \
                                                echo "</IfModule>"; \