forked from Mirrors/freeswitch
9 lines
120 B
Bash
9 lines
120 B
Bash
|
#!/bin/sh
|
||
|
set -x
|
||
|
libtoolize --force --copy
|
||
|
aclocal -I ./m4
|
||
|
autoheader
|
||
|
automake --foreign --add-missing --copy
|
||
|
autoconf
|
||
|
|