diff options
author | Rainer Jung <rjung@apache.org> | 2015-01-19 13:34:29 +0100 |
---|---|---|
committer | Rainer Jung <rjung@apache.org> | 2015-01-19 13:34:29 +0100 |
commit | 4822ab9bd3f921bfaf8b99197fcb27031a159489 (patch) | |
tree | c928f618f0012f76b876d7d460aba6448d365221 /Makefile.in | |
parent | Fix detection of old Solaris versions. (diff) | |
download | apache2-4822ab9bd3f921bfaf8b99197fcb27031a159489.tar.xz apache2-4822ab9bd3f921bfaf8b99197fcb27031a159489.zip |
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.in | 4 |
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>"; \ |