configure.ac | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-)
New commits: commit aabafa92a5d66a9d706125b88bfca55fd3ca6473 Author: Stephan Bergmann <[email protected]> AuthorDate: Tue Apr 9 23:12:10 2019 +0200 Commit: Stephan Bergmann <[email protected]> CommitDate: Wed Apr 10 09:43:00 2019 +0200 Honor use_ld_fail_if_error in use_ld_has_sanitizers check Change-Id: I20ed4c7daa9cde48ba65f92e5b4cc7e00972fe81 Reviewed-on: https://gerrit.libreoffice.org/70477 Tested-by: Jenkins Reviewed-by: Stephan Bergmann <[email protected]> diff --git a/configure.ac b/configure.ac index 457511f063c5..5f4a6de14dcb 100644 --- a/configure.ac +++ b/configure.ac @@ -3887,7 +3887,11 @@ printf ("hello world\n"); if test -n "$use_ld_has_cpp_typeinfo"; then AC_MSG_RESULT( yes ) else - AC_MSG_RESULT( no ) + if test -n "$use_ld_fail_if_error"; then + AC_MSG_ERROR( no ) + else + AC_MSG_RESULT( no ) + fi use_ld_ok= fi fi _______________________________________________ Libreoffice-commits mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits
