From a20406df7a0fd96183c492e042e9dcb3ee3cf863 Mon Sep 17 00:00:00 2001 From: Greg Ames Date: Fri, 19 Jul 2002 15:32:36 +0000 Subject: [PATCH] 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 --- Makefile.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 \ -- 2.50.1