qemu-devel
[Top][All Lists]
Advanced

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

Re: [Qemu-devel] [PATCH 1/6] tests/docker: fix make-archive-maybe


From: Fam Zheng
Subject: Re: [Qemu-devel] [PATCH 1/6] tests/docker: fix make-archive-maybe
Date: Tue, 7 Jun 2016 10:41:30 +0800
User-agent: Mutt/1.6.1 (2016-04-27)

On Mon, 06/06 16:46, Paolo Bonzini wrote:
> make-archive-maybe expects an archive path relative
> to $1, but receives a path relative to the current directory.  Redirect
> the output outside the subshell to bypass the "cd $1".
> 
> Signed-off-by: Paolo Bonzini <address@hidden>
> ---
>  tests/docker/Makefile.include | 6 +++---
>  1 file changed, 3 insertions(+), 3 deletions(-)
> 
> diff --git a/tests/docker/Makefile.include b/tests/docker/Makefile.include
> index 2fd2ca3..d0ad36c 100644
> --- a/tests/docker/Makefile.include
> +++ b/tests/docker/Makefile.include
> @@ -21,10 +21,10 @@ IMAGES ?= %
>  make-archive-maybe = $(if $(wildcard $1/*), \
>       $(call quiet-command, \
>               (cd $1; if git diff-index --quiet HEAD -- &>/dev/null; then \
> -                     git archive -1 HEAD --format=tar.gz -o $2; \
> +                     git archive -1 HEAD --format=tar.gz; \
>               else \
> -                     git archive -1 $$(git stash create) --format=tar.gz -o 
> $2; \
> -             fi), \
> +                     git archive -1 $$(git stash create) --format=tar.gz; \
> +             fi) > $2, \
>               "  ARCHIVE $(notdir $2)"))
>  
>  CUR_TIME := $(shell date +%Y-%m-%d-%H.%M.%S.$$$$)
> -- 
> 1.8.3.1
> 
> 

I think this is better than my patch because it also reduces the duplication
between the two "git archive" commands a little. So I'm dropping mine.

Fam



reply via email to

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