Skip to content
Snippets Groups Projects
Commit 05e5da60 authored by Mark Spencer's avatar Mark Spencer
Browse files

Fix silly error in makefile (bug #3081)

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4475 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent d999f80d
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment