qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] Makefile: use $(INSTALL_LIB) for modules not $(


From: Fam Zheng
Subject: Re: [Qemu-devel] [PATCH] Makefile: use $(INSTALL_LIB) for modules not $(INSTALL_PROG)
Date: Thu, 8 May 2014 20:41:51 +0800
User-agent: Mutt/1.5.23 (2014-03-12)

On Thu, 05/08 15:06, Michael Tokarev wrote:
> 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 <address@hidden>
> Cc: Fam Zheng <address@hidden>
> Cc: Paolo Bonzini <address@hidden>

Reviewed-by: Fam Zheng <address@hidden>

> ---
> Again, this is done on top of $(STRIP) patch, but can be done by
> its own.
> ---
>  Makefile |    2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> 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
> -- 
> 1.7.10.4
> 
> 



reply via email to

[Prev in Thread] Current Thread [Next in Thread]