From 6cd93d304142724c7c0fd37272e84f1a7eacb951 Mon Sep 17 00:00:00 2001 From: Jeffrey Hutzelman Date: Sat, 11 Dec 2004 10:52:16 +0000 Subject: [PATCH] fix-linux-kvers-setting-20041211 FIXES 16763 set SYS_KVERS reasonably on linux always --- acinclude.m4 | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/acinclude.m4 b/acinclude.m4 index 76ebe182e5..6d2f70cb9c 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -157,6 +157,12 @@ case $system in SUBARCH=default fi AC_MSG_RESULT(linux) + if test "x$enable_kernel_module" = "xyes"; then + AFS_SYSKVERS=`echo $LINUX_VERSION | awk -F\. '{print $[]1 $[]2}'` + if test "x${AFS_SYSKVERS}" = "x"; then + AC_MSG_ERROR(Couldn't guess your Linux version [2]) + fi + fi ;; *-solaris*) MKAFS_OSTYPE=SOLARIS @@ -494,9 +500,6 @@ else esac case $AFS_SYSNAME in *_linux* | *_umlinux*) - if test "x$enable_kernel_module" = "xyes"; then - AFS_SYSKVERS=`echo $LINUX_VERSION | awk -F\. '{print $[]1 $[]2}'` - fi if test "x${AFS_SYSKVERS}" = "x"; then AC_MSG_ERROR(Couldn't guess your Linux version. Please use the --with-afs-sysname option to configure an AFS sysname.) fi