forked from Mirrors/freeswitch
165bb80072
git-svn-id: http://svn.openzap.org/svn/openzap/branches/sangoma_boost@1032 a93c3328-9c30-0410-af19-c9cd2b2d52af
12 lines
328 B
Bash
12 lines
328 B
Bash
#!/bin/bash
|
|
# this script must be run from openzap root dir and it is assuming
|
|
# FreeSWITCH is trunk is located at ../../
|
|
fsdir=../..
|
|
set -x
|
|
cp Debug/*.dll $fsdir/Debug/
|
|
cp Debug/mod/*.dll $fsdir/Debug/mod/
|
|
cp Debug/*.pdb $fsdir/Debug/
|
|
echo "FRIENDLY REMINDER: RECOMPILE ftmod_wanpipe WHENEVER YOU INSTALL NEW DRIVERS"
|
|
set +x
|
|
|