Skip to content

Commit

Permalink
Merge pull request #125 from darylyu/fs_install_fixes
Browse files Browse the repository at this point in the history
freeswitch: small fixes
  • Loading branch information
mike-plivo committed Oct 1, 2014
2 parents e3dbed6 + 53ef2ce commit 71dda54
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions freeswitch/install.sh
Expand Up @@ -6,7 +6,7 @@


FS_CONF_PATH=https://github.com/plivo/plivoframework/raw/master/freeswitch
FS_GIT_REPO=git://git.freeswitch.org/freeswitch.git
FS_GIT_REPO=https://stash.freeswitch.org/scm/fs/freeswitch.git
FS_INSTALLED_PATH=/usr/local/freeswitch

#####################################################
Expand Down Expand Up @@ -78,7 +78,8 @@ esac
cd $FS_BASE_PATH
git clone $FS_GIT_REPO --depth=1
cd $FS_BASE_PATH/freeswitch
sh bootstrap.sh && ./configure --prefix=$FS_INSTALLED_PATH
git checkout -b v1.2.stable origin/v1.2.stable
sh bootstrap.sh && ./configure --prefix=$FS_INSTALLED_PATH || exit 1
[ -f modules.conf ] && cp modules.conf modules.conf.bak
sed -i \
-e "s/#applications\/mod_curl/applications\/mod_curl/g" \
Expand Down

0 comments on commit 71dda54

Please sign in to comment.