Fix for 35810. The configure script now stops running if perl can

be found.  It used to keep going and cause build errors.
r=cls
This commit is contained in:
jim_nance%yahoo.com 2000-04-15 10:55:55 +00:00
parent 614a9a491c
commit 9bfa8d069c
2 changed files with 359 additions and 354 deletions

708
configure vendored

File diff suppressed because it is too large Load Diff

View File

@ -287,7 +287,10 @@ AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_AWK
AC_PATH_PROGS(EMACS, xemacs lemacs emacs, :)
AC_PATH_PROGS(PERL, perl5 perl, :)
AC_PATH_PROGS(PERL, perl5 perl )
if test -z "PERL"; then
AC_MSG_ERROR([perl not found in \$PATH])
fi
AC_PATH_PROG(WHOAMI, whoami, :)
AC_PATH_PROG(AUTOCONF, autoconf, :)
AC_PATH_PROG(UNZIP, unzip, :)