diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-21 11:00:10 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2008-05-21 11:00:10 +0000 |
commit | a3cbb12940f3dca28fadcc54e884db5d524fc7bd (patch) | |
tree | abc094615bfc0bad7a29d88aaa3620d73a5d18e6 /libc/sysdeps/linux/common | |
parent | 9fd3751e5ec19fcf15a32720a1e475f64a5c08e2 (diff) |
- my manpage sais that init_module, create_module, query_module, delete_module
were removed in linux-2.6
Diffstat (limited to 'libc/sysdeps/linux/common')
-rw-r--r-- | libc/sysdeps/linux/common/Makefile.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/Makefile.in b/libc/sysdeps/linux/common/Makefile.in index 54b36a7a1..2e3ceca38 100644 --- a/libc/sysdeps/linux/common/Makefile.in +++ b/libc/sysdeps/linux/common/Makefile.in @@ -24,6 +24,11 @@ ifneq ($(UCLIBC_HAS_SSP),y) CSRC := $(filter-out ssp.c,$(CSRC)) endif +ifneq ($(UCLIBC_LINUX_MODULE_24),y) +CSRC := $(filter-out create_module.c delete_module.c init_module.c \ + query_module.c,$(CSRC)) +endif + # fails for some reason ifneq ($(strip $(ARCH_OBJS)),) CSRC := $(filter-out $(notdir $(ARCH_OBJS:.o=.c)),$(CSRC)) |