mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
LYX_CHECK_ERRORS: exit with status 1 if there is an error
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@14680 a592a061-630c-0410-9148-cb99ea01b6c8
This commit is contained in:
parent
9e5a37c7d0
commit
8d3ef3a4ca
@ -73,16 +73,6 @@ LYX_ERROR([Cannot find $1. Please check that the $2 library
|
|||||||
dnl Usage: LYX_CHECK_ERRORS Displays a warning message if a LYX_ERROR
|
dnl Usage: LYX_CHECK_ERRORS Displays a warning message if a LYX_ERROR
|
||||||
dnl has occured previously.
|
dnl has occured previously.
|
||||||
AC_DEFUN([LYX_CHECK_ERRORS],[
|
AC_DEFUN([LYX_CHECK_ERRORS],[
|
||||||
if test x$lyx_error = xyes; then
|
|
||||||
cat <<EOF
|
|
||||||
**** The following problems have been detected by configure.
|
|
||||||
**** Please check the messages below before running 'make'.
|
|
||||||
**** (see the section 'Problems' in the INSTALL file)
|
|
||||||
$lyx_error_txt
|
|
||||||
$lyx_warning_txt
|
|
||||||
EOF
|
|
||||||
else
|
|
||||||
|
|
||||||
if test x$lyx_warning = xyes; then
|
if test x$lyx_warning = xyes; then
|
||||||
cat <<EOF
|
cat <<EOF
|
||||||
=== The following minor problems have been detected by configure.
|
=== The following minor problems have been detected by configure.
|
||||||
@ -91,6 +81,17 @@ cat <<EOF
|
|||||||
$lyx_warning_txt
|
$lyx_warning_txt
|
||||||
EOF
|
EOF
|
||||||
fi
|
fi
|
||||||
|
if test x$lyx_error = xyes; then
|
||||||
|
cat <<EOF
|
||||||
|
**** The following problems have been detected by configure.
|
||||||
|
**** Please check the messages below before running 'make'.
|
||||||
|
**** (see the section 'Problems' in the INSTALL file)
|
||||||
|
$lyx_error_txt
|
||||||
|
$lyx_warning_txt
|
||||||
|
EOF
|
||||||
|
exit 1
|
||||||
|
else
|
||||||
|
|
||||||
cat <<EOF
|
cat <<EOF
|
||||||
Configuration of LyX was successful.
|
Configuration of LyX was successful.
|
||||||
Type 'make' to compile the program,
|
Type 'make' to compile the program,
|
||||||
|
Loading…
Reference in New Issue
Block a user