1
0
mirror of https://github.com/apache/httpd.git synced 2025-04-18 22:24:07 +03:00

* 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
This commit is contained in:
Ruediger Pluem 2021-05-12 16:24:18 +00:00
parent fcf3ee2676
commit 7f30757f7c

View File

@ -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 \