From abd48190e43408d446d8253d95d8fffd81e3438f Mon Sep 17 00:00:00 2001 From: Anthony Minessale Date: Fri, 18 Jan 2008 00:35:09 +0000 Subject: [PATCH] allways create /conf/dialplan/extensions on install git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@7279 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- Makefile.am | 1 + 1 file changed, 1 insertion(+) diff --git a/Makefile.am b/Makefile.am index a838bc1c13..f259009432 100644 --- a/Makefile.am +++ b/Makefile.am @@ -170,6 +170,7 @@ $(switch_builddir)/quiet_libtool: $(switch_builddir)/libtool samples-conf: test -d $(DESTDIR)$(prefix)/conf || $(mkinstalldirs) $(DESTDIR)$(prefix)/conf + test -d $(DESTDIR)$(prefix)/conf/dialplan/extensions || $(mkinstalldirs) $(DESTDIR)$(prefix)/conf/dialplan/extensions for conffile in `find conf -name \*.xml && find conf -name \*.conf && find conf -name \*.tpl && find conf -name \*.ttml && find conf -name mime.types` ; do \ dir=`echo $$conffile | sed -e 's|/[^/]*$$||'`; \ filename=`echo $$conffile | sed -e 's|^.*/||'`; \