forked from Mirrors/freeswitch
18 lines
146 B
Bash
18 lines
146 B
Bash
|
arch=`uname -m`
|
||
|
|
||
|
opts=""
|
||
|
if [ $arch = "x86_64" ] ; then
|
||
|
opts="--enable-pic"
|
||
|
fi
|
||
|
|
||
|
./configure $@ $opts
|
||
|
|
||
|
make clean uninstall all
|
||
|
make install
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|