From 5ce7a358bd3d4c5f48df9ce9a58a52c31af0ba67 Mon Sep 17 00:00:00 2001 From: Tim Gardner Date: Mon, 4 Jul 2011 15:22:13 +0100 Subject: [PATCH] UBUNTU: SAUCE: rtl8192se: Force a build for a 2.6/3.0 kernel BugLink: http://bugs.launchpad.net/bugs/805494 The makefile for this module is hideous. It checkes the build host kernel version in order to determine which driver version should be built. Since we know it will only _ever_ be built for 2.6/3.0, then just shortcut the ifeq(). Signed-off-by: Tim Gardner Signed-off-by: Andy Whitcroft Acked-by: Stefan Bader --- ubuntu/rtl8192se/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ubuntu/rtl8192se/Makefile b/ubuntu/rtl8192se/Makefile index 8d3c15c..0fcbf23 100644 --- a/ubuntu/rtl8192se/Makefile +++ b/ubuntu/rtl8192se/Makefile @@ -4,7 +4,7 @@ CC = gcc KVER := $(shell uname -r) MODDESTDIR := /lib/modules/$(KVER)/kernel/drivers/net/wireless/ -ifeq ($(shell uname -r|cut -d. -f1,2), 2.6) +ifeq (1,1) ###################### KERNEL 2.6 ################################ ifeq ($(NIC_SELECT),RTL8192CE) sub_folder = rtl8192c -- 1.7.10.4