diff options
| author | Rusty Russell <rusty@rustcorp.com.au> | 2002-12-13 01:59:30 -0800 |
|---|---|---|
| committer | Linus Torvalds <torvalds@home.transmeta.com> | 2002-12-13 01:59:30 -0800 |
| commit | dd820501615a58b58098df05b6f09db2b49a536b (patch) | |
| tree | 8281d4ab367e3bd4d3e47c594dcb0c90afc369d1 /scripts/Makefile.modinst | |
| parent | 6c3b56e8fe530f87f30d44586f7e4a3471478f89 (diff) | |
[PATCH] Revert depmod and hierarchy changes
module-init-tools 0.9 and newer supply a replacement depmod, so
it's safe to run again.
Also, some external programs like PCMCIA and mkinitrd really want the
directory hierarchy in /lib/modules back again: it makes no difference
to the tools (since 0.9), so revert it.
Diffstat (limited to 'scripts/Makefile.modinst')
| -rw-r--r-- | scripts/Makefile.modinst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/Makefile.modinst b/scripts/Makefile.modinst index 1ea62f1c679c..dac60ad79275 100644 --- a/scripts/Makefile.modinst +++ b/scripts/Makefile.modinst @@ -16,8 +16,8 @@ include scripts/Makefile.lib # ========================================================================== quiet_cmd_modules_install = INSTALL $(obj-m:.o=.ko) - cmd_modules_install = mkdir -p $(MODLIB)/kernel && \ - cp $(obj-m:.o=.ko) $(MODLIB)/kernel/ + cmd_modules_install = mkdir -p $(MODLIB)/kernel/$(obj); \ + cp $(obj-m:.o=.ko) $(MODLIB)/kernel/$(obj) modules_install: $(subdir-ym) ifneq ($(obj-m:.o=.ko),) |
