diff options
| author | Thomas Huth <thuth@redhat.com> | 2020-08-22 21:35:48 +0200 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2020-09-03 12:47:33 +0200 |
| commit | 853b4baf30a515d87229ee94f89f4b3ad376c9d2 (patch) | |
| tree | 2a621e15b09ce2f67ff40e59b8a26dfd8f11fb27 | |
| parent | 09db9b9db38e82acbc1fd4fa4661ac19c387380c (diff) | |
| download | focaccia-qemu-853b4baf30a515d87229ee94f89f4b3ad376c9d2.tar.gz focaccia-qemu-853b4baf30a515d87229ee94f89f4b3ad376c9d2.zip | |
configure: Add system = 'linux' for meson when cross-compiling
Meson needs the "system = xyz" line when cross-compiling. We are already adding a "system = 'windows'" for the MinGW cross-compilation case here, so let's add a "system = 'linux'" now for Linux hosts, too. Message-Id: <20200823111757.72002-2-thuth@redhat.com> Acked-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
| -rwxr-xr-x | configure | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/configure b/configure index be5434793c..f555923311 100755 --- a/configure +++ b/configure @@ -8172,6 +8172,9 @@ if test -n "$cross_prefix"; then ?:*) pre_prefix=/ ;; esac fi + if test "$linux" = "yes" ; then + echo "system = 'linux'" >> $cross + fi case "$ARCH" in i386|x86_64) echo "cpu_family = 'x86'" >> $cross |