From 33e8dcf7e97e6bec69fc05137e1eede1a0f9b443 Mon Sep 17 00:00:00 2001
From: Keith Whitwell <keith@tungstengraphics.com>
Date: Thu, 11 Jan 2001 20:05:39 +0000
Subject: Makefile.linux was checking $(MACHINE) for 'i386' before building the
     i810.o module. However on my i810's, $(MACHINE) is 'i686'.

---
 linux/Makefile.linux | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/linux/Makefile.linux b/linux/Makefile.linux
index 862bb6c3..58961840 100644
--- a/linux/Makefile.linux
+++ b/linux/Makefile.linux
@@ -133,6 +133,9 @@ MODS += mga.o
 ifeq ($(MACHINE),i386)
 MODS += i810.o
 endif
+ifeq ($(MACHINE),i686)
+MODS += i810.o
+endif
 
 
 MGAOBJS=	mga_drv.o mga_dma.o mga_bufs.o mga_context.o mga_state.o
-- 
cgit v1.2.3