1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-03-06 18:30:01 +00:00

18 lines
146 B
Bash
Raw Normal View History

arch=`uname -m`
opts=""
if [ $arch = "x86_64" ] ; then
opts="--enable-pic"
fi
./configure $@ $opts
make clean uninstall all
make install