From 77fa7b9548bf7a5bf5e49515f1a478c27ede07a7 Mon Sep 17 00:00:00 2001 From: Jon Smirl Date: Mon, 27 Sep 2004 15:42:48 +0000 Subject: [PATCH] Flip the 2.4 check so that it looks for 2.6 instead. This will allow builds where we can't determine the version through. --- linux-core/Makefile | 2 +- linux/Makefile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/linux-core/Makefile b/linux-core/Makefile index c82be8f..040b452 100644 --- a/linux-core/Makefile +++ b/linux-core/Makefile @@ -172,7 +172,7 @@ endif endif -ifeq ($(findstring 2.4,$(RUNNING_REL)),) +ifneq ($(findstring 2.6,$(RUNNING_REL)),) $(error Building 2.4 version on $(RUNNING_REL)) endif diff --git a/linux/Makefile b/linux/Makefile index c82be8f..040b452 100644 --- a/linux/Makefile +++ b/linux/Makefile @@ -172,7 +172,7 @@ endif endif -ifeq ($(findstring 2.4,$(RUNNING_REL)),) +ifneq ($(findstring 2.6,$(RUNNING_REL)),) $(error Building 2.4 version on $(RUNNING_REL)) endif -- 2.7.4