replace if with AS_IF (#5709, wip)

This commit is contained in:
Christian Grothoff 2019-05-12 21:33:55 +02:00
parent 081280a88b
commit 335f82d081
No known key found for this signature in database
GPG Key ID: 939E6BE1E29FC3CC

View File

@ -45,8 +45,9 @@ AC_ARG_ENABLE([only-doc],
AC_MSG_RESULT($doc_only) AC_MSG_RESULT($doc_only)
AM_CONDITIONAL([DOC_ONLY], [test "x$doc_only" = "xyes"]) AM_CONDITIONAL([DOC_ONLY], [test "x$doc_only" = "xyes"])
if test "$doc_only" != yes
then # Not indented, as most of the file falls under this one...
AS_IF([test "x$doc_only" != xyes],[
# Checks for programs. # Checks for programs.
@ -514,7 +515,8 @@ test "x$enable_doc" = "xno" || enable_doc=yes
AM_CONDITIONAL([ENABLE_DOC], [test "x$enable_doc" = "xyes"]) AM_CONDITIONAL([ENABLE_DOC], [test "x$enable_doc" = "xyes"])
else ],[ # This is the big test "$doc_only" on top of the file!
# logic if doc_only is set, make sure conditionals are still defined # logic if doc_only is set, make sure conditionals are still defined
AM_CONDITIONAL([HAVE_EXPENSIVE_TESTS], [false]) AM_CONDITIONAL([HAVE_EXPENSIVE_TESTS], [false])
@ -529,7 +531,7 @@ AM_CONDITIONAL([ENABLE_DOC], [true])
AM_CONDITIONAL([HAVE_TWISTER], [false]) AM_CONDITIONAL([HAVE_TWISTER], [false])
# end of 'doc_only' # end of 'doc_only'
fi ])
AC_CONFIG_FILES([Makefile AC_CONFIG_FILES([Makefile
doc/Makefile doc/Makefile