Apply DESTDIR also on old module renaming and depmod. Signed-off-by: Jan Kiszka <jan.kiszka@xxxxxxxxxxx> --- Makefile | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 37a14e1..8314833 100644 --- a/Makefile +++ b/Makefile @@ -49,11 +49,11 @@ sync: install: mkdir -p $(DESTDIR)/$(INSTALLDIR) cp $(ARCH_DIR)/*.ko $(DESTDIR)/$(INSTALLDIR) - for i in $(ORIGMODDIR)/drivers/kvm/*.ko \ - $(ORIGMODDIR)/arch/$(ARCH_DIR)/kvm/*.ko; do \ + for i in $(DESTDIR)/$(ORIGMODDIR)/drivers/kvm/*.ko \ + $(DESTDIR)/$(ORIGMODDIR)/arch/$(ARCH_DIR)/kvm/*.ko; do \ if [ -f "$$i" ]; then mv "$$i" "$$i.orig"; fi; \ done - /sbin/depmod -a $(DEPMOD_VERSION) + /sbin/depmod -a $(DEPMOD_VERSION) -b $(DESTDIR) tmpspec = .tmp.kvm-kmod.spec -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html