diff options
author | Ruediger Pluem <rpluem@apache.org> | 2021-02-01 11:29:07 +0100 |
---|---|---|
committer | Ruediger Pluem <rpluem@apache.org> | 2021-02-01 11:29:07 +0100 |
commit | b09a823c34c8667ea879358f29efc00d2cf98e63 (patch) | |
tree | 534b3faef397583919bf4c547d7e886798e40089 /Makefile.in | |
parent | - fixed a clang error when dividing sizeof(T1i[]) / sizeof(T2). (diff) | |
download | apache2-b09a823c34c8667ea879358f29efc00d2cf98e63.tar.xz apache2-b09a823c34c8667ea879358f29efc00d2cf98e63.zip |
* Do variable setting in a more portable way such that it works on MacOS as well
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1886098 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 a43c28a377..95a970a870 100644 --- a/Makefile.in +++ b/Makefile.in @@ -169,7 +169,7 @@ docs: update-changes: @for i in `find changes-entries -type f`; do \ cp CHANGES CHANGES.tmp ; \ - awk -vfname=$$i 'BEGIN{done = 0} \ + 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} //;' \ CHANGES.tmp > CHANGES ; \ |