diff options
author | Rik Faith <faith@alephnull.com> | 2000-07-21 18:28:01 +0000 |
---|---|---|
committer | Rik Faith <faith@alephnull.com> | 2000-07-21 18:28:01 +0000 |
commit | 3bcc55a74d5fba18e53c4a6441dffb50badbbec0 (patch) | |
tree | 9b5382749aaad86c4db6d0518ab486e9ef2542cd /linux/Makefile.kernel | |
parent | 6dd96a15ed329f26565bb971877f03e15801f3f5 (diff) |
Revert some changes and try alternative way to clean up AGP handling.
Diffstat (limited to 'linux/Makefile.kernel')
-rw-r--r-- | linux/Makefile.kernel | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/linux/Makefile.kernel b/linux/Makefile.kernel index b756c950..5c4d885a 100644 --- a/linux/Makefile.kernel +++ b/linux/Makefile.kernel @@ -17,7 +17,7 @@ L_OBJS := init.o memory.o proc.o auth.o context.o drawable.o bufs.o \ M_OBJS := -ifneq ($(CONFIG_AGP),n) +ifneq ($(CONFIG_AGP),) L_OBJS += agpsupport.o endif @@ -43,7 +43,7 @@ else endif endif -ifneq ($(CONFIG_AGP),n) +ifneq ($(CONFIG_AGP),) ifeq ($(CONFIG_DRM_MGA),y) OX_OBJS += mga_drv.o O_OBJS += mga_context.o mga_dma.o mga_bufs.o mga_state.o @@ -56,7 +56,7 @@ else endif endif -ifneq ($(CONFIG_AGP),n) +ifneq ($(CONFIG_AGP),) ifeq ($(CONFIG_DRM_I810),y) OX_OBJS += i810_drv.o O_OBJS += i810_context.o i810_bufs.o i810_dma.o |