diff options
author | Ruediger Pluem <rpluem@apache.org> | 2020-07-13 20:47:34 +0200 |
---|---|---|
committer | Ruediger Pluem <rpluem@apache.org> | 2020-07-13 20:47:34 +0200 |
commit | a4ee6e97a2f2da9d8357bf2cc34230977bed5ea2 (patch) | |
tree | 874003d2c8259bf0a9640ce6c407ee1d6424136d /Makefile.in | |
parent | *) mod_http2: (diff) | |
download | apache2-a4ee6e97a2f2da9d8357bf2cc34230977bed5ea2.tar.xz apache2-a4ee6e97a2f2da9d8357bf2cc34230977bed5ea2.zip |
Consider case insensitive filessystems
Consider case insensitive filessystems and thus choose a new non conflicting
name for the directory to store CHANGES entries.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1879840 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.in b/Makefile.in index 6a2be8d830..a43c28a377 100644 --- a/Makefile.in +++ b/Makefile.in @@ -167,7 +167,7 @@ docs: fi update-changes: - @for i in `find changes -type f`; do \ + @for i in `find changes-entries -type f`; do \ cp CHANGES CHANGES.tmp ; \ awk -vfname=$$i 'BEGIN{done = 0} \ done == 0 && /^Changes with Apache /{ active = 1; print; next}; \ |