diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-07-20 08:34:26 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-07-20 08:34:26 +0000 |
commit | 266668284ee3ca08d0594ce448cf1a0ac0084e65 (patch) | |
tree | 830c482ec5dd6130960b22dd55c47a17d6de92bd | |
parent | ca057156ecd387abcdf0b6ff45c9f850a92ea8e8 (diff) | |
download | xine-lib-266668284ee3ca08d0594ce448cf1a0ac0084e65.tar.gz xine-lib-266668284ee3ca08d0594ce448cf1a0ac0084e65.tar.bz2 |
fix for libtool 1.5 as provided on xine-devel by Chris Rankin
CVS patchset: 5195
CVS date: 2003/07/20 08:34:26
-rwxr-xr-x | autogen.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/autogen.sh b/autogen.sh index 1b9d8e3f5..d94644605 100755 --- a/autogen.sh +++ b/autogen.sh @@ -18,7 +18,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA # -# $Id: autogen.sh,v 1.11 2003/07/19 16:00:25 hadess Exp $ +# $Id: autogen.sh,v 1.12 2003/07/20 08:34:26 mroi Exp $ # # Maintained by Stephen Torri <storri@users.sourceforge.net> # @@ -112,7 +112,7 @@ detect_libtool() { NUM_RESULT=$# RESULT_FILE=$3 if [ $RETVAL -eq 0 -a $NUM_RESULT -eq 3 -a -f "$RESULT_FILE" ]; then - LT="`libtool --version | awk '{ print $4 }' | sed -e 's/[a-zA-Z\ \.\(\)\-]//g'`" + LT="`libtool --version | awk '{ print $4 }' | sed -e 's/[a-zA-Z\ \.\(\)\-\;]//g'`" LIBTOOL_MIN="`echo $LIBTOOL_MIN | sed -e 's/[a-zA-Z\ \.\(\)\-]//g'`" if test $LT -lt 100 ; then LT=`expr $LT \* 10` |