kvm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH kvm-unit-tests] Fix out-of-tree builds
@ 2020-05-11  7:06 Andrew Jones
  2020-05-12  8:03 ` Thomas Huth
  2020-06-23  0:34 ` Paolo Bonzini
  0 siblings, 2 replies; 3+ messages in thread
From: Andrew Jones @ 2020-05-11  7:06 UTC (permalink / raw)
  To: kvm; +Cc: pbonzini, Thomas Huth

Since b16df9ee5f3b out-of-tree builds have been broken because we
started validating the newly user-configurable $erratatxt file
before linking it into the build dir. We fix this not by moving
the validation, but by removing the linking and instead using the
full path of the $erratatxt file. This allows one to keep that file
separate from the src and build dirs.

Fixes: b16df9ee5f3b ("arch-run: Add reserved variables to the default environ")
Reported-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Andrew Jones <drjones@redhat.com>
---
 configure | 8 +++-----
 1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/configure b/configure
index 5d2cd90cd180..f9d030fd2f03 100755
--- a/configure
+++ b/configure
@@ -17,7 +17,7 @@ environ_default=yes
 u32_long=
 vmm="qemu"
 errata_force=0
-erratatxt="errata.txt"
+erratatxt="$srcdir/errata.txt"
 
 usage() {
     cat <<-EOF
@@ -89,7 +89,8 @@ while [[ "$1" = -* ]]; do
 	    environ_default=no
 	    ;;
 	--erratatxt)
-	    erratatxt="$arg"
+	    erratatxt=
+	    [ "$arg" ] && erratatxt=$(eval realpath "$arg")
 	    ;;
 	--help)
 	    usage
@@ -169,9 +170,6 @@ if test ! -e Makefile; then
 
     echo "linking scripts..."
     ln -sf "$srcdir/scripts"
-
-    echo "linking errata.txt..."
-    ln -sf "$srcdir/errata.txt"
 fi
 
 # link lib/asm for the architecture
-- 
2.25.4


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH kvm-unit-tests] Fix out-of-tree builds
  2020-05-11  7:06 [PATCH kvm-unit-tests] Fix out-of-tree builds Andrew Jones
@ 2020-05-12  8:03 ` Thomas Huth
  2020-06-23  0:34 ` Paolo Bonzini
  1 sibling, 0 replies; 3+ messages in thread
From: Thomas Huth @ 2020-05-12  8:03 UTC (permalink / raw)
  To: Andrew Jones, kvm; +Cc: pbonzini

On 11/05/2020 09.06, Andrew Jones wrote:
> Since b16df9ee5f3b out-of-tree builds have been broken because we
> started validating the newly user-configurable $erratatxt file
> before linking it into the build dir. We fix this not by moving
> the validation, but by removing the linking and instead using the
> full path of the $erratatxt file. This allows one to keep that file
> separate from the src and build dirs.
> 
> Fixes: b16df9ee5f3b ("arch-run: Add reserved variables to the default environ")
> Reported-by: Thomas Huth <thuth@redhat.com>
> Signed-off-by: Andrew Jones <drjones@redhat.com>
> ---
>  configure | 8 +++-----
>  1 file changed, 3 insertions(+), 5 deletions(-)

Thanks, this seems to fix the issue:

 https://travis-ci.com/github/huth/kvm-unit-tests/jobs/332339909

Thus:
Tested-by: Thomas Huth <thuth@redhat.com>


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH kvm-unit-tests] Fix out-of-tree builds
  2020-05-11  7:06 [PATCH kvm-unit-tests] Fix out-of-tree builds Andrew Jones
  2020-05-12  8:03 ` Thomas Huth
@ 2020-06-23  0:34 ` Paolo Bonzini
  1 sibling, 0 replies; 3+ messages in thread
From: Paolo Bonzini @ 2020-06-23  0:34 UTC (permalink / raw)
  To: Andrew Jones, kvm; +Cc: Thomas Huth

On 11/05/20 09:06, Andrew Jones wrote:
> Since b16df9ee5f3b out-of-tree builds have been broken because we
> started validating the newly user-configurable $erratatxt file
> before linking it into the build dir. We fix this not by moving
> the validation, but by removing the linking and instead using the
> full path of the $erratatxt file. This allows one to keep that file
> separate from the src and build dirs.
> 
> Fixes: b16df9ee5f3b ("arch-run: Add reserved variables to the default environ")
> Reported-by: Thomas Huth <thuth@redhat.com>
> Signed-off-by: Andrew Jones <drjones@redhat.com>
> ---
>  configure | 8 +++-----
>  1 file changed, 3 insertions(+), 5 deletions(-)
> 
> diff --git a/configure b/configure
> index 5d2cd90cd180..f9d030fd2f03 100755
> --- a/configure
> +++ b/configure
> @@ -17,7 +17,7 @@ environ_default=yes
>  u32_long=
>  vmm="qemu"
>  errata_force=0
> -erratatxt="errata.txt"
> +erratatxt="$srcdir/errata.txt"
>  
>  usage() {
>      cat <<-EOF
> @@ -89,7 +89,8 @@ while [[ "$1" = -* ]]; do
>  	    environ_default=no
>  	    ;;
>  	--erratatxt)
> -	    erratatxt="$arg"
> +	    erratatxt=
> +	    [ "$arg" ] && erratatxt=$(eval realpath "$arg")
>  	    ;;
>  	--help)
>  	    usage
> @@ -169,9 +170,6 @@ if test ! -e Makefile; then
>  
>      echo "linking scripts..."
>      ln -sf "$srcdir/scripts"
> -
> -    echo "linking errata.txt..."
> -    ln -sf "$srcdir/errata.txt"
>  fi
>  
>  # link lib/asm for the architecture
> 

Pushed, thanks.

Paolo


^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2020-06-23  0:34 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-11  7:06 [PATCH kvm-unit-tests] Fix out-of-tree builds Andrew Jones
2020-05-12  8:03 ` Thomas Huth
2020-06-23  0:34 ` Paolo Bonzini

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).