From: Mark Spencer Date: Sat, 18 Dec 2004 13:38:15 +0000 (+0000) Subject: Fix silly error in makefile (bug #3081) X-Git-Tag: 1.2.0-beta1~1641 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=05e5da6083f53ffbb6a9dc43a306d6190fed265c;p=thirdparty%2Fasterisk.git Fix silly error in makefile (bug #3081) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4475 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- diff --git a/utils/Makefile b/utils/Makefile index e8a5602ba8..352752eace 100755 --- a/utils/Makefile +++ b/utils/Makefile @@ -18,7 +18,7 @@ all: depend $(TARGET) install: for x in $(TARGET); do \ if [ "$$x" != "none" ]; then \ - install -m 755 $$x $(DESTDIR)$(ASTSBINDIR)/astman; \ + install -m 755 $$x $(DESTDIR)$(ASTSBINDIR)/$$x; \ fi; \ done