From a216ab6bab242e04ccc8a4e6f69ce7ace3efd07b Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Wed, 1 Jun 2005 22:59:14 +0000 Subject: [PATCH] Fix a bugaboo in the last commit. The wildcard patterns were not accounting for kernel versions older then 1.3.1. --- Makefile.inc1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile.inc1 b/Makefile.inc1 index e98693265b..9310682602 100644 --- a/Makefile.inc1 +++ b/Makefile.inc1 @@ -1,6 +1,6 @@ # # $FreeBSD: src/Makefile.inc1,v 1.141.2.62 2003/04/06 19:54:00 dwmalone Exp $ -# $DragonFly: src/Makefile.inc1,v 1.69 2005/06/01 18:07:09 joerg Exp $ +# $DragonFly: src/Makefile.inc1,v 1.70 2005/06/01 22:59:14 dillon Exp $ # # Make command line options: # -DMAKE_KERBEROS5 to build Kerberos5 @@ -407,7 +407,7 @@ installcheck: @pw groupshow authpf || (echo "You may need to run 'make preupgrade' first"; exit 1) @pw groupshow _pflogd || (echo "You may need to run 'make preupgrade' first"; exit 1) @pw groupshow _ntp || (echo "You may need to run 'make preupgrade' first"; exit 1) - @case `uname -r` in 1.2*|1.3.1-*) echo "You must upgrade your kernel to at least 1.3.2 and reboot before you can safely installworld, due to the unsupported ELF ABI tagging" ; exit 1;; esac + @case `uname -r` in 1.2*|1.3-*|1.3.0-*|1.3.1-*) echo "You must upgrade your kernel to at least 1.3.2 and reboot before you can safely installworld, due to the unsupported ELF ABI tagging" ; exit 1;; esac # distributeworld # -- 2.41.0