From: Emil Velikov Date: Fri, 26 Jan 2024 14:43:50 +0000 (+0000) Subject: configure: tweak the module_directory help string X-Git-Tag: v32~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=607abb818a5249292f08c0e8602a5a62d12e42a5;p=thirdparty%2Fkmod.git configure: tweak the module_directory help string Drop the somewhat misleading ${prefix}/lib/modules and explicitly mention what's the default. Signed-off-by: Emil Velikov --- diff --git a/configure.ac b/configure.ac index bfabbaa8..a14ebe08 100644 --- a/configure.ac +++ b/configure.ac @@ -92,7 +92,7 @@ AC_SUBST([rootlibdir], [$with_rootlibdir]) # Ideally this would be $prefix/lib/modules but default to /lib/modules for compatibility with earlier versions AC_ARG_WITH([module_directory], - AS_HELP_STRING([--with-module-directory=DIR], [directory in which to look for kernel modules - typically '/lib/modules' or '${prefix}/lib/modules']), + AS_HELP_STRING([--with-module-directory=DIR], [directory in which to look for kernel modules @<:@default=/lib/modules@:>@]), [], [with_module_directory=/lib/modules]) AC_SUBST([module_directory], [$with_module_directory])