mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-03 11:25:35 +00:00
Let find do its own globbing.
Previously a stray .c file would cause xmldocs to not get built. git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@390180 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
2
Makefile
2
Makefile
@@ -468,7 +468,7 @@ doc/core-en_US.xml: makeopts .lastclean $(XML_core_en_US)
|
||||
@echo "<docs xmlns:xi=\"http://www.w3.org/2001/XInclude\">" >> $@
|
||||
@for x in $(MOD_SUBDIRS); do \
|
||||
printf "$$x " ; \
|
||||
for i in `find $$x -name *.c`; do \
|
||||
for i in `find $$x -name '*.c'`; do \
|
||||
$(AWK) -f build_tools/get_documentation $$i >> $@ ; \
|
||||
done ; \
|
||||
done
|
||||
|
Reference in New Issue
Block a user