forked from Mirrors/freeswitch
da925bddf8
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@13790 d0543943-73ff-0310-b7d9-9358b9ac24b2
15 lines
253 B
Bash
Executable File
15 lines
253 B
Bash
Executable File
#! /bin/sh
|
|
|
|
case `uname` in
|
|
Darwin) libtoolize=glibtoolize ;;
|
|
*) libtoolize=libtoolize ;;
|
|
esac
|
|
|
|
set -x
|
|
$libtoolize --force --automake --copy
|
|
aclocal -I build/acmacros
|
|
automake --foreign --add-missing --copy
|
|
autoconf
|
|
|
|
rm -rf autom4te.cache
|