aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-09 14:20:11 +0000
committermarkster <markster@f38db490-d61c-443f-a65b-d21fe96a405b>2005-05-09 14:20:11 +0000
commit820210ba24d9235687557c085f47f1309a0f2c13 (patch)
treeaf44e88803344601aeae08100291c7e044f22b6d
parentcabec1d2f6494e831c4780b8cfaae23227989491 (diff)
Fix to makefile (bug #4215)
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@5611 f38db490-d61c-443f-a65b-d21fe96a405b
-rwxr-xr-xutils/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/utils/Makefile b/utils/Makefile
index 2a7c583a3..9ed7746cd 100755
--- a/utils/Makefile
+++ b/utils/Makefile
@@ -21,12 +21,12 @@ all: depend $(TARGET)
install:
for x in $(TARGET); do \
if [ "$$x" != "none" ]; then \
- install -m 755 $$x $(DESTDIR)$(ASTSBINDIR)/$$x; \
+ $(INSTALL) -m 755 $$x $(DESTDIR)$(ASTSBINDIR)/$$x; \
fi; \
done
clean:
- rm -f *.o astman smsq .depend
+ rm -f *.o astman smsq stereoize .depend
astman: astman.o ../md5.o
$(CC) $(CFLAGS) -o astman astman.o ../md5.o -lnewt