forked from Mirrors/freeswitch
15 lines
123 B
Bash
15 lines
123 B
Bash
|
arch=`uname -m`
|
||
|
|
||
|
opts=""
|
||
|
if [ $arch = "x86_64" ] ; then
|
||
|
opts="-fPIC"
|
||
|
fi
|
||
|
|
||
|
CFLAGS=$opts ./configure $@
|
||
|
make
|
||
|
make install
|
||
|
|
||
|
|
||
|
|
||
|
|