summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKeith Whitwell <keith@tungstengraphics.com>2001-01-11 20:05:39 +0000
committerKeith Whitwell <keith@tungstengraphics.com>2001-01-11 20:05:39 +0000
commit33e8dcf7e97e6bec69fc05137e1eede1a0f9b443 (patch)
treee71f547b5ca2b52deca8137319109e518a0b4534
parent61c15f4a2d053c9e609360a5e600f56b0887c3aa (diff)
downloaddrm-33e8dcf7e97e6bec69fc05137e1eede1a0f9b443.tar.gz
Makefile.linux was checking $(MACHINE) for 'i386' before building the
i810.o module. However on my i810's, $(MACHINE) is 'i686'.
-rw-r--r--linux/Makefile.linux3
1 files changed, 3 insertions, 0 deletions
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