summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2009-06-06 21:38:54 +0000
committerRussell Bryant <russell@russellbryant.com>2009-06-06 21:38:54 +0000
commit27bd9d5f182049c85d9e33d1b68a6b1247091b2e (patch)
treea1c38ac69f35054677278267ee806aa61547b146 /Makefile
parentd1d9beadc93090858bf4d0d3a50716655d136809 (diff)
Switch from "echo -n" to printf. On my mac, the -n was just getting printed out.
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@199368 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 326090bc0..ac03dcfa7 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 ; \