diff options
author | Claudio Mignanti <c.mignanti@gmail.com> | 2010-07-12 14:06:13 +0000 |
---|---|---|
committer | Claudio Mignanti <c.mignanti@gmail.com> | 2010-07-12 14:06:13 +0000 |
commit | 2d86ea7bf3f47d45d196e0148a091004ded321bf (patch) | |
tree | 2d9f40bf4827c95d0c34bdd9fae9baf18be532f8 /package/kernel/modules/i2c.mk | |
parent | bbcb9de93547b7aa0b11eb55e91914448c4b0901 (diff) | |
download | upstream-2d86ea7bf3f47d45d196e0148a091004ded321bf.tar.gz upstream-2d86ea7bf3f47d45d196e0148a091004ded321bf.tar.bz2 upstream-2d86ea7bf3f47d45d196e0148a091004ded321bf.zip |
massive: replace occurences of .$(LINUX_KMOD_SUFFIX) with .ko after r21950
SVN-Revision: 22145
Diffstat (limited to 'package/kernel/modules/i2c.mk')
-rw-r--r-- | package/kernel/modules/i2c.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/kernel/modules/i2c.mk b/package/kernel/modules/i2c.mk index 2d2a3e908a..14fbcf8e9e 100644 --- a/package/kernel/modules/i2c.mk +++ b/package/kernel/modules/i2c.mk @@ -8,7 +8,7 @@ I2C_MENU:=I2C support ModuleConfVar=$(word 1,$(subst :,$(space),$(1))) -ModuleFullPath=$(if $(findstring y,$($(call ModuleConfVar,$(1)))),,$(LINUX_DIR)/$(word 2,$(subst :,$(space),$(1))).$(LINUX_KMOD_SUFFIX)) +ModuleFullPath=$(if $(findstring y,$($(call ModuleConfVar,$(1)))),,$(LINUX_DIR)/$(word 2,$(subst :,$(space),$(1))).ko) ModuleKconfig=$(foreach mod,$(1),$(call ModuleConfVar,$(mod))) ModuleFiles=$(foreach mod,$(1),$(call ModuleFullPath,$(mod))) ModuleAuto=$(call AutoLoad,$(1),$(foreach mod,$(2),$(basename $(notdir $(call ModuleFullPath,$(mod))))),$(3)) |