Commit 0c5feff9 authored by Sam Ravnborg's avatar Sam Ravnborg Committed by Tom Rini

kbuild: Fix modules_install

modules_install failed for modules with 'ko' in their name.
Fixes this.
Signed-off-by: default avatarSam Ravnborg <sam@ravnborg.org>
parent 23f88ebd
......@@ -9,7 +9,7 @@ include scripts/Makefile.lib
#
__modules := $(sort $(shell grep -h .ko /dev/null $(wildcard $(MODVERDIR)/*.mod)))
__modules := $(sort $(shell grep -h '\.ko' /dev/null $(wildcard $(MODVERDIR)/*.mod)))
modules := $(patsubst %.o,%.ko,$(wildcard $(__modules:.ko=.o)))
.PHONY: $(modules)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment