diff options
author | Ruediger Pluem <rpluem@apache.org> | 2021-05-12 18:24:18 +0200 |
---|---|---|
committer | Ruediger Pluem <rpluem@apache.org> | 2021-05-12 18:24:18 +0200 |
commit | 7f30757f7cc257c49676f9fa0cae0cb250acaf5f (patch) | |
tree | 44317726adbc6d88d981f3830a07eeff2f0803ec /Makefile.in | |
parent | Follow up to r1889792: CHANGES entry. (diff) | |
download | apache2-7f30757f7cc257c49676f9fa0cae0cb250acaf5f.tar.xz apache2-7f30757f7cc257c49676f9fa0cae0cb250acaf5f.zip |
* Correctly record changes for the latest release in case there have been no
changes at all for this release so far.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1889806 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'Makefile.in')
-rw-r--r-- | Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index 95a970a870..e4961561b1 100644 --- a/Makefile.in +++ b/Makefile.in @@ -169,9 +169,9 @@ docs: update-changes: @for i in `find changes-entries -type f`; do \ cp CHANGES CHANGES.tmp ; \ - awk -v fname=$$i 'BEGIN{done = 0} \ - done == 0 && /^Changes with Apache /{ active = 1; print; next}; \ - /^ *\*/ && active == 1 && done == 0{rec=$$0; while(getline<fname){if (! ($$0 ~ /^ *$$/)){print}}printf "\n";print rec; active = 0; done = 1; next} //;' \ + awk -v fname=$$i 'BEGIN{done = 0; active = 0} \ + done == 0 && active == 0 && /^Changes with Apache /{ active = 1; print; next}; \ + /^( *\*|Changes with Apache )/ && active == 1 && done == 0{rec=$$0; while(getline<fname){if (! ($$0 ~ /^ *$$/)){print}}printf "\n";print rec; active = 0; done = 1; next} //;' \ CHANGES.tmp > CHANGES ; \ rm CHANGES.tmp ; \ if [ -n "$(SVN)" ] ; then \ |