summaryrefslogtreecommitdiff
path: root/utils/Makefile
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-12-15 20:29:31 +0000
committerMark Spencer <markster@digium.com>2004-12-15 20:29:31 +0000
commite58083c1f94678a29486a8286c1c16e981a2ca28 (patch)
treef0bb9c9063b76fb1e8a46650deac5b941bc2ca0e /utils/Makefile
parent77b39af6bfb0b78035c0191a03eb940265a7f285 (diff)
DISA fix, makefile fix (bug #3049)
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@4461 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'utils/Makefile')
-rwxr-xr-xutils/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/utils/Makefile b/utils/Makefile
index dd9546fa0..e8a5602ba 100755
--- a/utils/Makefile
+++ b/utils/Makefile
@@ -16,11 +16,11 @@ TARGET+=$(shell if [ -f /usr/include/newt.h ]; then echo "astman"; else if [ -f
all: depend $(TARGET)
install:
- if [ "$(TARGET)" != "none" ]; then \
- for x in $(TARGET); do \
+ for x in $(TARGET); do \
+ if [ "$$x" != "none" ]; then \
install -m 755 $$x $(DESTDIR)$(ASTSBINDIR)/astman; \
- done ; \
- fi
+ fi; \
+ done
none: