diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2020-07-27 15:17:11 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2020-07-27 15:58:16 +0200 |
commit | b18c44e7e467ab872dc6283d558c57d91ead45cb (patch) | |
tree | 8c1188e6b9d344cce71f6691f98c8fc465495d30 /configure.ac | |
parent | 4addedabe6778e70754709290502d721cdef796d (diff) |
Missing quoting
Change-Id: I4ad942f7fa490f072e9751f55a42279345d7d181
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99483
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 e89c23732c40..5e846685cf1a 100644 --- a/configure.ac +++ b/configure.ac @@ -4169,7 +4169,7 @@ if test "$enable_gdb_index" != "no"; then AC_LINK_IFELSE([AC_LANG_PROGRAM([[]], [[ return 0; ]])],[have_ggnu_pubnames=TRUE],[have_ggnu_pubnames=]) if test "$have_ggnu_pubnames" != "TRUE"; then if test "$enable_gdb_index" = "yes"; then - AC_MSG_ERROR( no, --enable-gdb-index not supported ) + AC_MSG_ERROR([no, --enable-gdb-index not supported]) else AC_MSG_RESULT( no ) fi |