summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorRainer Jung <rjung@apache.org>2015-01-19 12:34:29 +0000
committerRainer Jung <rjung@apache.org>2015-01-19 12:34:29 +0000
commit4822ab9bd3f921bfaf8b99197fcb27031a159489 (patch)
treec928f618f0012f76b876d7d460aba6448d365221 /Makefile.in
parentdf2e9f3ba4295ab717c9da3103111ec192479bcf (diff)
downloadhttpd-4822ab9bd3f921bfaf8b99197fcb27031a159489.tar.gz
Addition to r1652955: Use "=" in combination
with "test" instead of "==". git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1652985 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.in b/Makefile.in
index fa8b3f0917..670c1132be 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -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>"; \