summaryrefslogtreecommitdiff
path: root/Makefile.d/modules.mk
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@sbcglobal.net>2014-12-29 12:17:06 -0500
committerLuke Shumaker <lukeshu@sbcglobal.net>2014-12-29 12:17:06 -0500
commitc220f779c3ac2d3de2525461da65f89f21b7f467 (patch)
tree0890aa60dd6c5472922eb31fb41eecef0f00a47d /Makefile.d/modules.mk
parentbfbb55ed6430f6b4d9bb49d4f2592ef9a5713e75 (diff)
fix (mostly incorrect pluralization)
Diffstat (limited to 'Makefile.d/modules.mk')
-rw-r--r--Makefile.d/modules.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.d/modules.mk b/Makefile.d/modules.mk
index cbd92ed..d08a55c 100644
--- a/Makefile.d/modules.mk
+++ b/Makefile.d/modules.mk
@@ -13,7 +13,7 @@ define rule_module_files
src/%(arch)/%(module)/%: | tmp/builddeps-stamps/%(arch)/%(module)
test -e $@
endef
-$(eval $(call multiglob,modules_files,arch module))
+$(eval $(call multiglob,module_files,arch module))
# The generic rules
@@ -31,7 +31,7 @@ $(eval $(call multiglob,download,arch module))
# % = arch/module
tmp/builddeps-stamps/%: src/%
cd $< && { test -f ./Makefile || test -x ./configure || ./autogen.sh; }
- cd $< && { test -f ./Makefile || ./configure $($*_configure); }
+ cd $< && { test -f ./Makefile || ./configure $($(*F)_configure); }
$(MAKE) -C $<
mkdir -p $(@D)
touch $@