From: Greg Ames Date: Fri, 19 Jul 2002 15:32:36 +0000 (+0000) Subject: remove logic which looks for a non-existant ssl.conf file in the docs/conf/ X-Git-Tag: 2.0.40~173 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a20406df7a0fd96183c492e042e9dcb3ee3cf863;p=apache remove logic which looks for a non-existant ssl.conf file in the docs/conf/ build directory (it's ssl-std.conf there), then ignores its absence in the next line. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@96129 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/Makefile.in b/Makefile.in index b09e7cbb7d..29d7437d0c 100644 --- a/Makefile.in +++ b/Makefile.in @@ -39,8 +39,7 @@ install-conf: done; \ for j in $(top_srcdir)/docs/conf $(top_builddir)/docs/conf ; do \ cd $$j ; \ - for i in *-std*.conf ssl.conf; do \ - [ -f $$i ] || continue; \ + for i in *-std*.conf; do \ ( \ n_lm=`awk 'BEGIN {n=0} /@@LoadModule@@/ {n+=1} END {print n}' < $$i`; \ if test $$n_lm -eq 0 -o "x$(DSO_MODULES)" = "x"; then \