1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

Janitorial duties to make autogen.sh portable.

(This used to be commit c1559003fe)
This commit is contained in:
Richard Sharpe 2003-04-11 18:05:07 +00:00
parent 8584b58886
commit 0b74dbcf60

View File

@ -15,7 +15,7 @@ AUTOCONFFOUND="0"
## Look for autoheader
##
for i in $TESTAUTOHEADER; do
if which $i >& /dev/null; then
if which $i > /dev/null 2>&1; then
if [ `$i --version | head -1 | cut -d. -f 2` -ge 53 ]; then
AUTOHEADER=$i
AUTOHEADERFOUND="1"
@ -29,7 +29,7 @@ done
##
for i in $TESTAUTOCONF; do
if which $i >& /dev/null; then
if which $i > /dev/null 2>&1; then
if [ `$i --version | head -1 | cut -d. -f 2` -ge 53 ]; then
AUTOCONF=$i
AUTOCONFFOUND="1"
@ -42,7 +42,7 @@ done
##
## do we have it?
##
if [ "$AUTOCONFFOUND" == "0" -o "$AUTOHEADERFOUND" == "0" ]; then
if [ "$AUTOCONFFOUND" = "0" -o "$AUTOHEADERFOUND" = "0" ]; then
echo "$0: need autoconf 2.53 or later to build samba from CVS" >&2
exit 1
fi