diff options
author | Michal Marek <mmarek@suse.cz> | 2011-06-09 15:35:22 +0200 |
---|---|---|
committer | Michal Marek <mmarek@suse.cz> | 2011-06-09 23:05:54 +0200 |
commit | fc4da9a3e68b1f64237fafda084f61067f568a99 (patch) | |
tree | fcbcdde8bcd1b1bc85a7c0daba00971bce9c3cb1 /Makefile | |
parent | 78d3bb4483ba1b206dbaaf209219ed517b01f7da (diff) | |
download | linux-3.10-fc4da9a3e68b1f64237fafda084f61067f568a99.tar.gz linux-3.10-fc4da9a3e68b1f64237fafda084f61067f568a99.tar.bz2 linux-3.10-fc4da9a3e68b1f64237fafda084f61067f568a99.zip |
kbuild: Move depmod call to a separate script
Do not bloat the Makefile with multiline shell statements. No
user-visible change intended.
Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 1 insertions, 11 deletions
@@ -1110,11 +1110,6 @@ modules_install: _modinst_ _modinst_post PHONY += _modinst_ _modinst_: - @if [ -z "`$(DEPMOD) -V 2>/dev/null | grep module-init-tools`" ]; then \ - echo "Warning: you may need to install module-init-tools"; \ - echo "See http://www.codemonkey.org.uk/docs/post-halloween-2.6.txt";\ - sleep 1; \ - fi @rm -rf $(MODLIB)/kernel @rm -f $(MODLIB)/source @mkdir -p $(MODLIB)/kernel @@ -1531,12 +1526,7 @@ quiet_cmd_rmfiles = $(if $(wildcard $(rm-files)),CLEAN $(wildcard $(rm-files)) # Run depmod only if we have System.map and depmod is executable 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) ) \ - $(KERNELRELEASE); \ - fi + cmd_depmod = $(srctree)/scripts/depmod.sh $(DEPMOD) $(KERNELRELEASE) # Create temporary dir for module support files # clean it up only when building all modules |