From: Michael Tokarev Date: Thu, 8 May 2014 11:06:03 +0000 (+0400) Subject: Makefile: use $(INSTALL_LIB) for modules not $(INSTALL_PROG) X-Git-Tag: TizenStudio_2.0_p2.3.2~208^2~851^2~4 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=264f8b4fdc7b4ef304c426589b7fe198ca693823;p=sdk%2Femulator%2Fqemu.git Makefile: use $(INSTALL_LIB) for modules not $(INSTALL_PROG) We have $(INSTALL_LIB) which is the same as $(INSTALL_PROG) but uses correct permissions. Loadable objects (modules) are like shared libraries, not like programs. Signed-off-by: Michael Tokarev Cc: Fam Zheng Cc: Paolo Bonzini Signed-off-by: Paolo Bonzini --- diff --git a/Makefile b/Makefile index 23ca444..12ea464 100644 --- a/Makefile +++ b/Makefile @@ -381,7 +381,7 @@ ifneq ($(CONFIG_MODULES),) $(INSTALL_DIR) "$(DESTDIR)$(qemu_moddir)" for s in $(modules-m:.mo=$(DSOSUF)); do \ t="$(DESTDIR)$(qemu_moddir)/$$(echo $$s | tr / -)"; \ - $(INSTALL_PROG) $$s "$$t"; \ + $(INSTALL_LIB) $$s "$$t"; \ test -z "$(STRIP)" || $(STRIP) "$$t"; \ done endif