[Freeswitch-svn] [commit] r4689 - freeswitch/trunk/build
Freeswitch SVN
brian at freeswitch.org
Tue Mar 20 16:00:42 EDT 2007
Author: brian
Date: Tue Mar 20 16:00:42 2007
New Revision: 4689
Modified:
freeswitch/trunk/build/fixlibtool.sh
Log:
lets not hozed libtool for Darwin
Modified: freeswitch/trunk/build/fixlibtool.sh
==============================================================================
--- freeswitch/trunk/build/fixlibtool.sh (original)
+++ freeswitch/trunk/build/fixlibtool.sh Tue Mar 20 16:00:42 2007
@@ -4,7 +4,11 @@
wget http://mirrors.kernel.org/gnu/libtool/libtool-1.5.22.tar.gz
tar -zxvf libtool-1.5.22.tar.gz
cd libtool-1.5.22
+if test "`uname -s`" = "Darwin"; then
+./configure --prefix=/usr --program-prefix=g
+else
./configure --prefix=/usr
+fi
make
make install
cd /tmp
More information about the Freeswitch-svn
mailing list