File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -167,19 +167,19 @@ docs:
167167 fi
168168
169169update-changes :
170- @for i in ` find changes-entries -type f` ; do \
170+ @find changes-entries -type f | while read -r i ; do \
171171 cp CHANGES CHANGES.tmp ; \
172- awk -v fname=$$ i ' BEGIN{done = 0; active = 0} \
172+ awk -v fname=" $$ i" ' BEGIN{done = 0; active = 0} \
173173 done == 0 && active == 0 && /^Changes with Apache /{ active = 1; print; next}; \
174174 /^( * \* | Changes with Apache )/ && active == 1 && done == 0{rec=$$ 0; while(( getline< fname) > 0 ){if (! ($$ 0 ~ / ^ * $$ / )) {print}}printf " \n" ; print rec; active = 0; done = 1; next} //; ' \
175175 CHANGES.tmp > CHANGES ; \
176176 rm CHANGES.tmp ; \
177177 if [ -n " $( SVN) " ] ; then \
178- if ! $( SVN) rm $$ i 2> /dev/null ; then \
179- $(RM ) $$ i ; \
178+ if ! $( SVN) rm " $$ i" 2> /dev/null ; then \
179+ $(RM ) " $$ i" ; \
180180 fi ; \
181181 else \
182- $(RM ) $$ i ; \
182+ $(RM ) " $$ i" ; \
183183 fi ; \
184184 done ; \
185185 if [ -n " $( SVN) " ] ; then \
You can’t perform that action at this time.
0 commit comments