mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-02-23 10:54:33 +00:00
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:
parent
614a9a491c
commit
9bfa8d069c
@ -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, :)
|
||||
|
Loading…
x
Reference in New Issue
Block a user