summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Spencer <markster@digium.com>2004-08-07 03:01:52 +0000
committerMark Spencer <markster@digium.com>2004-08-07 03:01:52 +0000
commit082d7ee4b8b8a9d833f4b3d36c5e18297e55dc20 (patch)
tree906767be58c7f4ad6390d8e7ffc86930bf2b37e1
parentbdd9753f1edbd36b20c358de13d41f5c8367a6bd (diff)
Don't install mpg123 unless it was built
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@3588 65c4cc65-6c06-0410-ace0-fbb531ad65f3
-rwxr-xr-xMakefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7abdf0de9..25fedf561 100755
--- a/Makefile
+++ b/Makefile
@@ -387,7 +387,7 @@ bininstall: all
fi
( cd $(DESTDIR)$(ASTVARLIBDIR)/sounds ; ln -s $(ASTSPOOLDIR)/vm . )
( cd $(DESTDIR)$(ASTVARLIBDIR)/sounds ; ln -s $(ASTSPOOLDIR)/voicemail . )
- if [ -d mpg123-0.59r ]; then make -C mpg123-0.59r install; fi
+ if [ -f mpg123-0.59r/mpg123 ]; then make -C mpg123-0.59r install; fi
@echo " +---- Asterisk Installation Complete -------+"
@echo " + +"
@echo " + YOU MUST READ THE SECURITY DOCUMENT +"