mirror of
https://github.com/samba-team/samba.git
synced 2025-03-25 14:50:24 +03:00
r24313: Merge r23377 from 3_2
Patch from Bjoern Jacke <bjoern@j3e.de> to deal with non-GNU implementations of tr in autogen.sh (This used to be commit c77c74efdbca414ffc51415c52206eff6ca57fe3)
This commit is contained in:
parent
12e660f761
commit
1317d8e694
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user