]> git.michaelhowe.org Git - packages/o/openafs.git/commitdiff
STABLE11-configure-fail-if-cant-guess-linux-version-for-sysname-20010719
authorDerrick Brashear <shadow@dementia.org>
Thu, 19 Jul 2001 22:25:44 +0000 (22:25 +0000)
committerDerrick Brashear <shadow@dementia.org>
Thu, 19 Jul 2001 22:25:44 +0000 (22:25 +0000)
if we disabled kernel module because there were no headers, guessing the sysname
 is harder

(cherry picked from commit 3416930f75db8f7268f354ce00531e14f53f5393)

configure.in

index 185f9c35a6ed181cc0a51c53526abbbf2eb79e68..1f90d607142571423d79a2a104327bfa25b54b5c 100644 (file)
@@ -239,6 +239,9 @@ else
        case $AFS_SYSNAME in
                *_linux*)
                        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. Please use the --with-afs-sysname option to configure an AFS sysname.)
+                       fi
                        _AFS_SYSNAME=`echo $AFS_SYSNAME|sed s/XX\$/$AFS_SYSKVERS/`
                        AFS_SYSNAME="$_AFS_SYSNAME"
                        ;;