aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-06 21:39:43 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2009-06-06 21:39:43 +0000
commitf4e86dc70c3886d6e742cf2c8062013e0a2d3298 (patch)
treebe4f674068ce12d5c9833cbdd9e2349d86139827 /Makefile
parentb9ea142bcbb7aa85dbe79b6c743ba0254f112a0e (diff)
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. ........ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.6.2@199369 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 8b5dbe4cb..87432153c 100644
--- a/Makefile
+++ b/Makefile
@@ -494,12 +494,12 @@ datafiles: _all
$(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 ; \