Harmonize spelling of debug-info
authorJérémie Galarneau <jeremie.galarneau@efficios.com>
Wed, 27 Apr 2016 19:01:15 +0000 (15:01 -0400)
committerJérémie Galarneau <jeremie.galarneau@efficios.com>
Wed, 27 Apr 2016 19:01:42 +0000 (15:01 -0400)
Signed-off-by: Jérémie Galarneau <jeremie.galarneau@efficios.com>
configure.ac
tests/debuginfo-data/README.md

index a5ae72c3b9874168c4fa9622dc4a85fc06e38146..4578fc07f1223608edd1b68ea786120612b54053 100644 (file)
@@ -278,8 +278,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])
@@ -287,9 +287,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"
index 02d6bd34fd28c8431493919f93730c0861434853..88e773116c19fabb469851932fbe01de15525726 100644 (file)
@@ -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.
 
This page took 0.025895 seconds and 4 git commands to generate.