aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2022-04-04 18:01:53 +0200
committerDenis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>2022-05-23 18:45:57 +0200
commit7002117f054699c80001eeb96504ff038dc51d5d (patch)
tree0fcf6f865a235980e20bdbf33ead7a4e10ec95d4
parentce855d6cdbbabfacd574610d8374b134faeb7362 (diff)
downloadhardware_replicant_libsamsung-ipc-7002117f054699c80001eeb96504ff038dc51d5d.tar.gz
hardware_replicant_libsamsung-ipc-7002117f054699c80001eeb96504ff038dc51d5d.tar.bz2
hardware_replicant_libsamsung-ipc-7002117f054699c80001eeb96504ff038dc51d5d.zip
configure.ac: align --enable-debug help
Without that fix, the --enable-debug is missaligned with the other help that is around it: Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build --enable-static[=PKGS] build static libraries [default=no] --enable-shared[=PKGS] build shared libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) --enable-debug Enable debug build (default=disabled) Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-pic[=PKGS] try to use only PIC/non-PIC objects [default=use both] --with-aix-soname=aix|svr4|both shared library versioning (aka "SONAME") variant to provide on AIX, [default=aix]. --with-gnu-ld assume the C compiler uses GNU ld [default=no] --with-sysroot[=DIR] Search for dependent libraries within DIR (or the compiler's sysroot if not specified). Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 4246af8..edf7863 100644
--- a/configure.ac
+++ b/configure.ac
@@ -32,7 +32,7 @@ AC_SUBST(OPENSSL_LIBS)
#------------------------------------------------------------------------------
# check for debugging
AC_ARG_ENABLE(debug,
- [ --enable-debug Enable debug build (default=disabled)],
+ [ --enable-debug Enable debug build (default=disabled)],
[debug=$enableval],
[debug="no"])
AM_CONDITIONAL( [WANT_DEBUG], [test x"$debug" = x"yes"])