[XEN PATCH 01/15] build: hide that we are updating xen/lib/x86

Anthony PERARD posted 15 patches 1 year, 6 months ago
[XEN PATCH 01/15] build: hide that we are updating xen/lib/x86
Posted by Anthony PERARD 1 year, 6 months ago
Change of directory to xen/lib/x86 isn't needed to be shown. If
something gets updated, make will print the command line.

Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>
---
 xen/include/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xen/include/Makefile b/xen/include/Makefile
index edd5322e88..96d5f6f3c8 100644
--- a/xen/include/Makefile
+++ b/xen/include/Makefile
@@ -229,7 +229,7 @@ ifeq ($(XEN_TARGET_ARCH),x86_64)
 .PHONY: lib-x86-all
 lib-x86-all:
 	@mkdir -p $(obj)/xen/lib/x86
-	$(MAKE) -C $(obj)/xen/lib/x86 -f $(abs_srctree)/$(src)/xen/lib/x86/Makefile all
+	$(Q)$(MAKE) -C $(obj)/xen/lib/x86 -f $(abs_srctree)/$(src)/xen/lib/x86/Makefile all
 
 all: lib-x86-all
 endif
-- 
Anthony PERARD
Re: [XEN PATCH 01/15] build: hide that we are updating xen/lib/x86
Posted by Jan Beulich 1 year, 6 months ago
On 23.05.2023 18:37, Anthony PERARD wrote:
> Change of directory to xen/lib/x86 isn't needed to be shown. If
> something gets updated, make will print the command line.
> 
> Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>

Acked-by: Jan Beulich <jbeulich@suse.com>
Re: [XEN PATCH 01/15] build: hide that we are updating xen/lib/x86
Posted by Luca Fancellu 1 year, 6 months ago

> On 23 May 2023, at 17:37, Anthony PERARD <anthony.perard@citrix.com> wrote:
> 
> Change of directory to xen/lib/x86 isn't needed to be shown. If
> something gets updated, make will print the command line.
> 
> Signed-off-by: Anthony PERARD <anthony.perard@citrix.com>

Hi Anthony,

Looks good to me

Reviewed-by: Luca Fancellu <luca.fancellu@arm.com>


> ---
> xen/include/Makefile | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/xen/include/Makefile b/xen/include/Makefile
> index edd5322e88..96d5f6f3c8 100644
> --- a/xen/include/Makefile
> +++ b/xen/include/Makefile
> @@ -229,7 +229,7 @@ ifeq ($(XEN_TARGET_ARCH),x86_64)
> .PHONY: lib-x86-all
> lib-x86-all:
> @mkdir -p $(obj)/xen/lib/x86
> - $(MAKE) -C $(obj)/xen/lib/x86 -f $(abs_srctree)/$(src)/xen/lib/x86/Makefile all
> + $(Q)$(MAKE) -C $(obj)/xen/lib/x86 -f $(abs_srctree)/$(src)/xen/lib/x86/Makefile all
> 
> all: lib-x86-all
> endif
> -- 
> Anthony PERARD
> 
>