diff options
author | Gilles Espinasse <g.esp@free.fr> | 2009-03-07 13:57:25 +0100 |
---|---|---|
committer | Sam Ravnborg <sam@ravnborg.org> | 2009-03-07 13:57:25 +0100 |
commit | 75bccd881a49d2da796ec0852158f957dc023f61 (patch) | |
tree | 266c76dcb06bdbb142fe2eb02cbda4413f658e09 /Makefile | |
parent | b925dbfe3c59b637666670a60473a15d29e0a7a7 (diff) |
kbuild: remove unused -r option for module-init-tool depmod
Following a thread on busybox mailing list
depmod -r option is ignored by module-init-tools depmod
-r option break busybox depmod.
So the best solution look to remove -r from kernel Makefile
Signed-off-by: Gilles Espinasse <g.esp@free.fr>
Signed-off-by: Sam Ravnborg <sam@ravnborg.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1543,7 +1543,7 @@ quiet_cmd_depmod = DEPMOD $(KERNELRELEASE) cmd_depmod = \ if [ -r System.map -a -x $(DEPMOD) ]; then \ $(DEPMOD) -ae -F System.map \ - $(if $(strip $(INSTALL_MOD_PATH)), -b $(INSTALL_MOD_PATH) -r) \ + $(if $(strip $(INSTALL_MOD_PATH)), -b $(INSTALL_MOD_PATH) ) \ $(KERNELRELEASE); \ fi |