configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) New commits: commit 13cb7e8f06e74dc7558333640760ce6ada3d8ad5 Author: Andras Timar <andras.ti...@collabora.com> AuthorDate: Sun Mar 13 10:53:05 2022 +0100 Commit: Andras Timar <andras.ti...@collabora.com> CommitDate: Sun Mar 13 21:31:39 2022 +0100
do not build HELPTOOLS for 'host' when cross compling * it's unnecessary, HELPTOOLS are only needed for the build * on armv7-32-bit we had build issues LinkTarget Library/libclucene.a not defined. Stop. probably because of the refactoring of help related options: 14069d84174ca7a4e60db4d75912903e9679b643 Change-Id: Ia32e7dba1d745eee80fb487f8749767d5d6648e8 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/131463 Tested-by: Andras Timar <andras.ti...@collabora.com> Reviewed-by: Andras Timar <andras.ti...@collabora.com> diff --git a/configure.ac b/configure.ac index a7d6267c73cc..e55f8c8564c4 100644 --- a/configure.ac +++ b/configure.ac @@ -5412,7 +5412,7 @@ else fi AC_MSG_CHECKING([if we need to build the help index tooling]) -if test "$with_help" = yes -o "$enable_extension_integration" != no; then +if test "$cross_compiling" != yes -a \( "$with_help" = yes -o "$enable_extension_integration" != no \); then BUILD_TYPE="$BUILD_TYPE HELPTOOLS" test_clucene=yes AC_MSG_RESULT([yes])