From a250c7807f325c964c7315ad3fb441bc5e8ae39f Mon Sep 17 00:00:00 2001 From: Nathan Neulinger Date: Fri, 29 Jun 2001 05:48:25 +0000 Subject: [PATCH] fix-linux-headers-updating-in-configure-20010629 make defaulting work correctly --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index d0fd20c..4b4e209 100644 --- a/configure.in +++ b/configure.in @@ -54,8 +54,8 @@ case $system in else LINUX_KERNEL_PATH="/usr/src/linux" fi - if test -f "$with_linux_kernel_headers/include/linux/version.h"; then - linux_kvers=`fgrep UTS_RELEASE $with_linux_kernel_headers/include/linux/version.h |awk 'BEGIN { FS="\"" } { print $2 }'` + if test -f "$LINUX_KERNEL_PATH/include/linux/version.h"; then + linux_kvers=`fgrep UTS_RELEASE $LINUX_KERNEL_PATH/include/linux/version.h |awk 'BEGIN { FS="\"" } { print $2 }'` if test "x$linux_kvers" = "x"; then AC_MSG_ERROR(Linux headers lack version definition) exit 1 -- 1.9.4