[asterisk-commits] wdoekes: trunk r390180 - /trunk/Makefile

SVN commits to the Asterisk project asterisk-commits at lists.digium.com
Fri May 31 02:57:31 CDT 2013


Author: wdoekes
Date: Fri May 31 02:57:28 2013
New Revision: 390180

URL: http://svnview.digium.com/svn/asterisk?view=rev&rev=390180
Log:
Let find do its own globbing.

Previously a stray .c file would cause xmldocs to not get built.

Modified:
    trunk/Makefile

Modified: trunk/Makefile
URL: http://svnview.digium.com/svn/asterisk/trunk/Makefile?view=diff&rev=390180&r1=390179&r2=390180
==============================================================================
--- trunk/Makefile (original)
+++ trunk/Makefile Fri May 31 02:57:28 2013
@@ -468,7 +468,7 @@
 	@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




More information about the asterisk-commits mailing list