[Libreoffice-commits] core.git: configure.ac
Tor Lillqvist
tml at collabora.com
Tue Oct 27 08:25:29 PDT 2015
configure.ac | 6 +-----
1 file changed, 1 insertion(+), 5 deletions(-)
New commits:
commit 446f17f6c1f98b17ceb6750f5dc67a27330d1351
Author: Tor Lillqvist <tml at collabora.com>
Date: Mon Oct 12 16:22:31 2015 +0300
Automating configure choices based on what is installed considered harmful
Don't automatically --disable-odk (if not mentioned explicitly either
way) based on whether doxygen is found or not.
Caolán says: It's an absolute pain as a maintainer when packages do
that. You build it in some minimal build env and all is well, then
some depend changes and something else ends up in the build env and
now your package fails to build anymore, or behaves quite differently.
Change-Id: I8bc6ab6f90e6e070a37e37b5108081425e116173
Reviewed-on: https://gerrit.libreoffice.org/19324
Tested-by: Jenkins <ci at libreoffice.org>
Reviewed-by: Michael Stahl <mstahl at redhat.com>
diff --git a/configure.ac b/configure.ac
index 9e0be41..062d5d3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -7335,11 +7335,7 @@ else
if test "$with_doxygen" = yes; then
AC_PATH_PROG([DOXYGEN], [doxygen])
if test -z "$DOXYGEN"; then
- if test "$enable_odk" = "" ; then
- enable_odk="no"
- else
- AC_MSG_ERROR([doxygen not found in \$PATH; specify its pathname via --with-doxygen=..., or disable its use via --without-doxygen])
- fi
+ AC_MSG_ERROR([doxygen not found in \$PATH; specify its pathname via --with-doxygen=..., or disable its use via --without-doxygen])
fi
else
AC_MSG_CHECKING([for doxygen])
More information about the Libreoffice-commits
mailing list