From: Gilles Espinasse Date: Sat, 7 Mar 2009 12:57:25 +0000 (+0100) Subject: kbuild: remove unused -r option for module-init-tool depmod X-Git-Tag: v2.6.29-rc8~2^2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=75bccd881a49d2da796ec0852158f957dc023f61;p=thirdparty%2Flinux.git 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 Signed-off-by: Sam Ravnborg --- diff --git a/Makefile b/Makefile index 55424172bea40..5a5b82eaaec2b 100644 --- a/Makefile +++ b/Makefile @@ -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