From 351c00cd687e9192fd529ef5fa697eb78df167e3 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=A9mie=20Galarneau?= Date: Wed, 27 Apr 2016 15:01:15 -0400 Subject: [PATCH] Harmonize spelling of debug-info MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérémie Galarneau --- configure.ac | 8 ++++---- tests/debuginfo-data/README.md | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/configure.ac b/configure.ac index df6ada76..da651095 100644 --- a/configure.ac +++ b/configure.ac @@ -239,8 +239,8 @@ fi # Optional debuginfo feature (enabled by default) AS_IF([test "x$DEFAULT_ENABLE_DEBUGINFO" = xyes], - [AC_ARG_ENABLE([debuginfo], [AC_HELP_STRING([--disable-debuginfo], [disable the debug info feature (default on OS X and Solaris)])], [], [enable_debuginfo=yes])], - [AC_ARG_ENABLE([debuginfo], [AC_HELP_STRING([--enable-debuginfo], [enable the debug info feature (default on Linux)])], [], [enable_debuginfo=no])] + [AC_ARG_ENABLE([debug-info], [AC_HELP_STRING([--disable-debug-info], [disable the debug-info feature (default on OS X and Solaris)])], [], [enable_debuginfo=yes])], + [AC_ARG_ENABLE([debug-info], [AC_HELP_STRING([--enable-debug-info], [enable the debug-info feature (default on Linux)])], [], [enable_debuginfo=no])] ) AM_CONDITIONAL([ENABLE_DEBUGINFO], [test "x$enable_debuginfo" = xyes]) @@ -248,9 +248,9 @@ AS_IF([test "x$enable_debuginfo" = xyes], [ AC_CHECK_LIB([elf], [elf_version], [], []) AC_CHECK_LIB([dw], [dwarf_begin], [], []) AS_IF([test "x$ac_cv_lib_elf_elf_version" = xno || test "x$ac_cv_lib_dw_dwarf_begin" = xno], - [AC_MSG_ERROR(Missing library from elfutils required for debuginfo. You can disable this feature with --disable-debuginfo.)] + [AC_MSG_ERROR(Missing library from elfutils required for debug-info. You can disable this feature with --disable-debuginfo.)] ) - AC_DEFINE([ENABLE_DEBUGINFO], [1], [Define to 1 if you enable the 'debuginfo' feature]) + AC_DEFINE([ENABLE_DEBUGINFO], [1], [Define to 1 if you enable the 'debug-info' feature]) ], []) pkg_modules="gmodule-2.0 >= 2.0.0" diff --git a/tests/debuginfo-data/README.md b/tests/debuginfo-data/README.md index 02d6bd34..88e77311 100644 --- a/tests/debuginfo-data/README.md +++ b/tests/debuginfo-data/README.md @@ -2,7 +2,7 @@ debuginfo-data ============== This directory contains pre-generated ELF and DWARF files used to test -the debuginfo analysis feature, including lookup of DWARF debugging +the debug-info analysis feature, including lookup of DWARF debugging information via build ID and debug link methods, as well as the source files used to generate them. -- 2.34.1