Fail if specified FE dir does not exist rather than just warn.

This commit is contained in:
cls%seawood.org 1998-10-03 02:21:18 +00:00
Родитель 83527160c5
Коммит 12472d8607
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -256,7 +256,7 @@ for fe in $fe_list; do
if [ test -d $srcdir/cmd/${fe}fe ]; then
MOZ_FE="$MOZ_FE $fe"
else
AC_MSG_WARN(FE directory ${fe}fe does not exist...removing)
AC_MSG_ERROR(FE directory $srcdir/cmd/${fe}fe does not exist.)
fi
done