diff options
author | Andras Timar <andras.timar@collabora.com> | 2022-03-13 10:53:05 +0100 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2022-03-13 21:31:39 +0100 |
commit | 13cb7e8f06e74dc7558333640760ce6ada3d8ad5 (patch) | |
tree | 08a3330ec39a7c905d2b81cc8189af41e391dd5f | |
parent | 2e1e7d8b99ce03dfa585ba4287fa8392e2f6b4d5 (diff) |
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.timar@collabora.com>
Reviewed-by: Andras Timar <andras.timar@collabora.com>
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
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]) |