From: Mark Spencer Date: Mon, 9 May 2005 14:20:11 +0000 (+0000) Subject: Fix to makefile (bug #4215) X-Git-Tag: 1.2.0-beta1~708 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6f76e2b7055ae511bd9ea90acf13a014df24e1c4;p=thirdparty%2Fasterisk.git Fix to makefile (bug #4215) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@5611 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/utils/Makefile b/utils/Makefile index 2a7c583a30..9ed7746cd9 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