diff options
author | Greg Ames <gregames@apache.org> | 2002-07-19 17:32:36 +0200 |
---|---|---|
committer | Greg Ames <gregames@apache.org> | 2002-07-19 17:32:36 +0200 |
commit | a20406df7a0fd96183c492e042e9dcb3ee3cf863 (patch) | |
tree | 9b4837dbe1b5f804c54c11369e50ac6221b990fe /Makefile.in | |
parent | no logic changes - just some style changes. (diff) | |
download | apache2-a20406df7a0fd96183c492e042e9dcb3ee3cf863.tar.xz apache2-a20406df7a0fd96183c492e042e9dcb3ee3cf863.zip |
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
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 3 |
1 files changed, 1 insertions, 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 \ |