diff options
| author | Sam Ravnborg <sam@mars.ravnborg.org> | 2004-09-01 01:36:26 +0200 |
|---|---|---|
| committer | Tom Rini <trini@kernel.crashing.org> | 2004-09-01 01:36:26 +0200 |
| commit | 0c5feff97191e4631446a9516663e42b4c917f01 (patch) | |
| tree | 7133bfecca34f210e051de0c6961591aea3a9b15 /scripts | |
| parent | 23f88ebd017a73507cb66e60e0bf5b7f01649e3c (diff) | |
kbuild: Fix modules_install
modules_install failed for modules with 'ko' in their name.
Fixes this.
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'scripts')
| -rw-r--r-- | scripts/Makefile.modinst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/Makefile.modinst b/scripts/Makefile.modinst index 460294bf25b9..b9ab77d5dd27 100644 --- a/scripts/Makefile.modinst +++ b/scripts/Makefile.modinst @@ -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) |
