Pass PERL_VERSION to test script as an env variable so that the perl test works properly. Bug #66443

This commit is contained in:
cls%seawood.org 2001-03-09 04:30:27 +00:00
Родитель 5947032e5e
Коммит eb945be4f4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -303,7 +303,7 @@ if test -z "$PERL" || test "$PERL" = ":"; then
fi
AC_MSG_CHECKING([for minimum required perl version >= $PERL_VERSION])
_perl_version=`$PERL -e 'print "$]"; if ($] >= $PERL_VERSION) { exit(0); } else { exit(1); }' 2>&5`
_perl_version=`PERL_VERSION=$PERL_VERSION $PERL -e 'print "$]"; if ($] >= $ENV{PERL_VERSION}) { exit(0); } else { exit(1); }' 2>&5`
_perl_res=$?
AC_MSG_RESULT([$_perl_version])