From 86f6bb7aa24b8db4732ba0f5e64b2ef4ba03bb5c Mon Sep 17 00:00:00 2001 From: Rainer Jung Date: Mon, 19 Jan 2015 12:34:29 +0000 Subject: [PATCH] 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 --- Makefile.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.in b/Makefile.in index fa8b3f09172..670c1132be4 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 ""; \ echo " $${loading_disabled}LoadModule $${j}_module $(rel_libexecdir)/mod_$${j}.so"; \ echo ""; \ - elif test $$j == "cgi" -a "$$have_cgid" == "1"; then \ + elif test $$j = "cgi" -a "$$have_cgid" = "1"; then \ echo ""; \ echo " $${loading_disabled}LoadModule $${j}_module $(rel_libexecdir)/mod_$${j}.so"; \ echo ""; \ -- 2.47.3