summaryrefslogtreecommitdiff
path: root/build
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2006-03-23 18:04:15 +0000
committerBenny Prijono <bennylp@teluu.com>2006-03-23 18:04:15 +0000
commitadbbd72dbe1e91f17c9d6051271a5814108cbac5 (patch)
tree82ca73500c23f8e85d1f33f43330942e32b4d8a0 /build
parent14824da601ff1b606a4bb0d891adb98940f60fce (diff)
Fixed misc warnings/errors in Solaris build
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@355 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'build')
-rw-r--r--build/rules.mak2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/rules.mak b/build/rules.mak
index 2076a9bd..c43cb928 100644
--- a/build/rules.mak
+++ b/build/rules.mak
@@ -153,7 +153,7 @@ depend:
$(subst @@,$(DEP_FILE),$(HOST_RM))
for F in $(FULL_SRCS); do \
if test -f $$F; then \
- echo -n "$(OBJDIR)/" >> $(DEP_FILE); \
+ echo "$(OBJDIR)/" | tr -d '\n' >> $(DEP_FILE); \
if gcc -M $(DEPFLAGS) $$F | sed '/^#/d' >> $(DEP_FILE); then \
true; \
else \