From: Anthony Minessale Date: Tue, 13 Nov 2007 00:45:20 +0000 (+0000) Subject: create modules.conf on bootstrap if it does not exist X-Git-Tag: v1.0-beta2~145 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=30ccc85dcb7ed15d1fd260ea8b5009ee989245a6;p=thirdparty%2Ffreeswitch.git create modules.conf on bootstrap if it does not exist git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6232 d0543943-73ff-0310-b7d9-9358b9ac24b2 --- diff --git a/bootstrap.sh b/bootstrap.sh index ef7df40617..1a32a1854b 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -7,6 +7,11 @@ SUBDIRS="codec/g7xx codec/g726 codec/gsm codec/ilbc codec/lpc10 curl iax iksemel js js/nsprpub libdingaling libetpan libresample libsndfile pcre sofia-sip \ speex sqlite srtp xmlrpc-c"; + +if [ ! -f modules.conf ]; then + cp build/modules.conf.in modules.conf +fi + # keep automake from making us magically GPL, and to stop complaining about missing files. cp -f docs/COPYING . cp -f docs/AUTHORS .