1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-22 05:57:43 +03:00

r23377: Patch from Bjoern Jacke <bjoern@j3e.de> to deal

with non-GNU implementations of tr in autogen.sh
This commit is contained in:
Gerald Carter 2007-06-07 13:35:39 +00:00 committed by Gerald (Jerry) Carter
parent a8ec53f022
commit ccc466c56a

View File

@ -16,7 +16,7 @@ AUTOCONFFOUND="0"
##
for i in $TESTAUTOHEADER; do
if which $i > /dev/null 2>&1; then
if test `$i --version | head -n 1 | cut -d. -f 2 | tr -d [:alpha:]` -ge 53; then
if test `$i --version | head -n 1 | cut -d. -f 2 | sed "s/[^0-9]//g"` -ge 53; then
AUTOHEADER=$i
AUTOHEADERFOUND="1"
break
@ -30,7 +30,7 @@ done
for i in $TESTAUTOCONF; do
if which $i > /dev/null 2>&1; then
if test `$i --version | head -n 1 | cut -d. -f 2 | tr -d [:alpha:]` -ge 53; then
if test `$i --version | head -n 1 | cut -d. -f 2 | sed "s/[^0-9]//g"` -ge 53; then
AUTOCONF=$i
AUTOCONFFOUND="1"
break