[svn-commits] russell: branch 1.6.2 r199369 - in /branches/1.6.2: ./ Makefile

SVN commits to the Digium repositories svn-commits at lists.digium.com
Sat Jun 6 16:39:47 CDT 2009


Author: russell
Date: Sat Jun  6 16:39:43 2009
New Revision: 199369

URL: http://svn.asterisk.org/svn-view/asterisk?view=rev&rev=199369
Log:
Merged revisions 199368 via svnmerge from 
https://origsvn.digium.com/svn/asterisk/trunk

........
  r199368 | russell | 2009-06-06 16:38:54 -0500 (Sat, 06 Jun 2009) | 2 lines
  
  Switch from "echo -n" to printf.  On my mac, the -n was just getting printed out.
........

Modified:
    branches/1.6.2/   (props changed)
    branches/1.6.2/Makefile

Propchange: branches/1.6.2/
------------------------------------------------------------------------------
Binary property 'trunk-merged' - no diff available.

Modified: branches/1.6.2/Makefile
URL: http://svn.asterisk.org/svn-view/asterisk/branches/1.6.2/Makefile?view=diff&rev=199369&r1=199368&r2=199369
==============================================================================
--- branches/1.6.2/Makefile (original)
+++ branches/1.6.2/Makefile Sat Jun  6 16:39:43 2009
@@ -494,12 +494,12 @@
 	$(MAKE) -C sounds install
 
 doc/core-en_US.xml: $(foreach dir,$(MOD_SUBDIRS),$(shell $(GREP) -l "language=\"en_US\"" $(dir)/*.c $(dir)/*.cc 2>/dev/null))
-	@echo -n "Building Documentation For: "
+	@printf "Building Documentation For: "
 	@echo "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" > $@
 	@echo "<!DOCTYPE docs SYSTEM \"appdocsxml.dtd\">" >> $@
 	@echo "<docs xmlns:xi=\"http://www.w3.org/2001/XInclude\">" >> $@
 	@for x in $(MOD_SUBDIRS); do \
-		echo -n "$$x " ; \
+		printf "$$x " ; \
 		for i in $$x/*.c; do \
 			$(AWK) -f build_tools/get_documentation $$i >> $@ ; \
 		done ; \




More information about the svn-commits mailing list