From: Rainer Jung Date: Mon, 19 Jan 2015 12:34:29 +0000 (+0000) Subject: Addition to r1652955: Use "=" in combination X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=86f6bb7aa24b8db4732ba0f5e64b2ef4ba03bb5c;p=thirdparty%2Fapache%2Fhttpd.git 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 --- 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 ""; \