Kaydet (Commit) f8507958 authored tarafından coypu's avatar coypu Kaydeden (comit) Michael Stahl

Avoid using == with test, it is bash-specific.

Change-Id: If44680b8f9fb527dd27a71e193b334d83c12e46a
Reviewed-on: https://gerrit.libreoffice.org/22078Reviewed-by: 's avatarjan iversen <jani@documentfoundation.org>
Tested-by: 's avatarjan iversen <jani@documentfoundation.org>
Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarMichael Stahl <mstahl@redhat.com>
üst 44e48e30
......@@ -5163,7 +5163,7 @@ if test "$_os" != "WINNT" -o "$WITH_MINGW" = "yes"; then
# explicitly. Or put /path/to/compiler in PATH yourself.
# Use wrappers for LTO
if test "$ENABLE_LTO" == "TRUE" -a "$COM_IS_CLANG" != "TRUE"; then
if test "$ENABLE_LTO" = "TRUE" -a "$COM_IS_CLANG" != "TRUE"; then
AC_CHECK_TOOL(AR,gcc-ar)
AC_CHECK_TOOL(NM,gcc-nm)
AC_CHECK_TOOL(RANLIB,gcc-ranlib)
......@@ -6905,7 +6905,7 @@ dnl ===================================================================
dnl Set target Java bytecode version
dnl ===================================================================
if test "$ENABLE_JAVA" != ""; then
if test "$HAVE_JAVA9" == "TRUE"; then
if test "$HAVE_JAVA9" = "TRUE"; then
_java_target_ver="1.6"
else
_java_target_ver="1.5"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment