diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2021-09-21 08:50:02 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2021-09-21 09:59:40 +0200 |
commit | 1281ea9176674a040ec08cf0014fdd75ca0b2fd1 (patch) | |
tree | b7393607c3139607b40c79e3ae0d66b6b236ee69 /configure.ac | |
parent | 504d2209e47ffeb223b2bcde9fc24e828cc5cd6f (diff) |
Avoid "test: : integer expression expected" on non-macOS platforms
Change-Id: I90a31483b1750c59299e9a9f148990a8a68d4860
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/122377
Tested-by: Jenkins
Reviewed-by: Stephan Bergmann <sbergman@redhat.com>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index e592f6da8ce5..c03ea04085f7 100644 --- a/configure.ac +++ b/configure.ac @@ -12024,7 +12024,7 @@ if test "$enable_skia" != "no" -a "$build_skia" = "yes" -a -z "$DISABLE_GUI"; th AC_SUBST(SKIA_GPU) fi - if test -n "$MAC_OS_X_VERSION_MIN_REQUIRED" -a "$MAC_OS_X_VERSION_MIN_REQUIRED" -lt "101200"; then + if test -n "$MAC_OS_X_VERSION_MIN_REQUIRED" && test "$MAC_OS_X_VERSION_MIN_REQUIRED" -lt "101200"; then SKIA_DISABLE_VMA_USE_STL_SHARED_MUTEX=1 AC_SUBST(SKIA_DISABLE_VMA_USE_STL_SHARED_MUTEX) fi |