From 05e5da6083f53ffbb6a9dc43a306d6190fed265c Mon Sep 17 00:00:00 2001 From: Mark Spencer Date: Sat, 18 Dec 2004 13:38:15 +0000 Subject: [PATCH] Fix silly error in makefile (bug #3081) git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4475 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- utils/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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