aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-11-21 01:53:44 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2005-11-21 01:53:44 +0000
commit4e294e64a5048c107531c779047895f397bbb440 (patch)
treef308720be3a62e6155ffd72be5f7308d811eafa1
parent3435044aad9957543cee2466fc3fa791e2cc1867 (diff)
create the monitor spool dir
git-svn-id: http://svn.digium.com/svn/asterisk/trunk@7161 f38db490-d61c-443f-a65b-d21fe96a405b
-rwxr-xr-xChangeLog2
-rwxr-xr-xMakefile1
2 files changed, 3 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index b94f5a1f9..2b06bb80d 100755
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,7 @@
2005-11-20 Russell Bryant <russell@digium.com>
+ * Makefile: Create the monitor spool directory when the other spool directories are created.
+
* pbx.c.c: Remove some useless checks and unnecessary calls to ast_strlen_zero(). (issue #5805)
* cli.c: Remove some unnecessary calls to ast_strlen_zero(). (issue #5804)
diff --git a/Makefile b/Makefile
index a2ce5c4bd..815644f81 100755
--- a/Makefile
+++ b/Makefile
@@ -636,6 +636,7 @@ bininstall: all
mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/system
mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/tmp
mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/meetme
+ mkdir -p $(DESTDIR)$(ASTSPOOLDIR)/monitor
if [ -f asterisk ]; then $(INSTALL) -m 755 asterisk $(DESTDIR)$(ASTSBINDIR)/; fi
if [ -f cygwin/asterisk.exe ]; then $(INSTALL) -m 755 cygwin/asterisk.exe $(DESTDIR)$(ASTSBINDIR)/; fi
if [ -f asterisk.dll ]; then $(INSTALL) -m 755 asterisk.dll $(DESTDIR)$(ASTSBINDIR)/; fi