From 0372a9f65dcd26519d4bb6b83ddddcbc0b3a4ebc Mon Sep 17 00:00:00 2001 From: "Chas Williams (CONTRACTOR)" Date: Wed, 29 Sep 2010 18:21:25 -0400 Subject: [PATCH] configure: --with-linux-kernel-packaging should default to disabled the test for this build feature is reversed. by default, the value for with_linux_kernel_packaging will not be defined which makes the existing test pick MPS='SP' instead of LINUX_WHICH_MODULES. based on the configure help messages, this would appear to be an opt-in not an opt-out. ... Optional Packages: ... --with-linux-kernel-packaging use standard naming conventions to aid Linux kernel build packaging (disables MPS, sets the kernel module name to openafs.ko, and installs kernel modules into the standard Linux location) ... Reviewed-on: http://gerrit.openafs.org/2869 Reviewed-by: Simon Wilkinson Reviewed-by: Derrick Brashear Tested-by: BuildBot (cherry picked from commit 87e96c30e069a2379365c9947a311e700cf51c4d) Change-Id: Id46afcb341104795c8e206261a2b1dfac289f37b Reviewed-on: http://gerrit.openafs.org/2938 Tested-by: Derrick Brashear --- acinclude.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acinclude.m4 b/acinclude.m4 index 61c79ff6bd..4b1a9298f8 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -927,7 +927,7 @@ case $AFS_SYSNAME in *_linux* | *_umlinux*) ]) dnl Packaging and SMP build - if test "x$with_linux_kernel_packaging" = "xno" ; then + if test "x$with_linux_kernel_packaging" != "xyes" ; then LINUX_WHICH_MODULES else AC_SUBST(MPS,'SP')