freebsd didn't like \< and it wasn't needed anyway

This commit is contained in:
Bill Currie 2005-02-27 07:16:31 +00:00
parent 54ade1b8a5
commit 1c21708e8c
1 changed files with 1 additions and 1 deletions

View File

@ -37,7 +37,7 @@ fi
lt=`which $libtoolize`
if test -n "$lt" ; then
if test -x "$lt" ; then
LTIZE_VER=`$libtoolize --version | head -1 | sed 's/.* \(\<[1-9][0-9]*\(\.[1-9][0-9]*\)\(\.[1-9][0-9]*\)*\).*/\1/'`
LTIZE_VER=`$libtoolize --version | head -1 | sed 's/.* \([1-9][0-9]*\(\.[1-9][0-9]*\)\(\.[1-9][0-9]*\)*\).*/\1/'`
LTIZE_VER_MAJOR=`echo $LTIZE_VER | cut -f1 -d'.'`
LTIZE_VER_MINOR=`echo $LTIZE_VER | cut -f2 -d'.' | sed -e 's/[^0-9]//g'`