summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorRuediger Pluem <rpluem@apache.org>2021-05-12 16:24:18 +0000
committerRuediger Pluem <rpluem@apache.org>2021-05-12 16:24:18 +0000
commit7f30757f7cc257c49676f9fa0cae0cb250acaf5f (patch)
tree44317726adbc6d88d981f3830a07eeff2f0803ec /Makefile.in
parentfcf3ee26768540c8cbc22a60afe08075bed877ba (diff)
downloadhttpd-7f30757f7cc257c49676f9fa0cae0cb250acaf5f.tar.gz
* 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.in6
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 \