[Qemu-devel] [PATCH] configure: remove AUTOCONF_HOST

Marc-André Lureau posted 1 patch 4 years, 9 months ago
Test s390x passed
Test docker-clang@ubuntu passed
Test docker-mingw@fedora passed
Test FreeBSD passed
Test checkpatch passed
Test asan passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20190723121605.491-1-marcandre.lureau@redhat.com
configure | 5 -----
1 file changed, 5 deletions(-)
[Qemu-devel] [PATCH] configure: remove AUTOCONF_HOST
Posted by Marc-André Lureau 4 years, 9 months ago
This is a left-over from commit
c12b6d70e384c769ca372e15ffd19b3e9f563662 ("pixman: drop submodule")

Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
---
 configure | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/configure b/configure
index ad0b8582bf..82c65ab46a 100755
--- a/configure
+++ b/configure
@@ -7351,11 +7351,6 @@ if test "$sparse" = "yes" ; then
   echo "HOST_CC      := REAL_CC=\"\$(HOST_CC)\" cgcc"  >> $config_host_mak
   echo "QEMU_CFLAGS  += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
 fi
-if test "$cross_prefix" != ""; then
-  echo "AUTOCONF_HOST := --host=${cross_prefix%-}"     >> $config_host_mak
-else
-  echo "AUTOCONF_HOST := "                             >> $config_host_mak
-fi
 echo "LDFLAGS=$LDFLAGS" >> $config_host_mak
 echo "LDFLAGS_NOPIE=$LDFLAGS_NOPIE" >> $config_host_mak
 echo "QEMU_LDFLAGS=$QEMU_LDFLAGS" >> $config_host_mak
-- 
2.22.0.545.g9c9b961d7e


Re: [Qemu-devel] [PATCH] configure: remove AUTOCONF_HOST
Posted by Philippe Mathieu-Daudé 4 years, 9 months ago
On 7/23/19 2:16 PM, Marc-André Lureau wrote:
> This is a left-over from commit
> c12b6d70e384c769ca372e15ffd19b3e9f563662 ("pixman: drop submodule")
> 
> Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
> ---
>  configure | 5 -----
>  1 file changed, 5 deletions(-)
> 
> diff --git a/configure b/configure
> index ad0b8582bf..82c65ab46a 100755
> --- a/configure
> +++ b/configure
> @@ -7351,11 +7351,6 @@ if test "$sparse" = "yes" ; then
>    echo "HOST_CC      := REAL_CC=\"\$(HOST_CC)\" cgcc"  >> $config_host_mak
>    echo "QEMU_CFLAGS  += -Wbitwise -Wno-transparent-union -Wno-old-initializer -Wno-non-pointer-null" >> $config_host_mak
>  fi
> -if test "$cross_prefix" != ""; then
> -  echo "AUTOCONF_HOST := --host=${cross_prefix%-}"     >> $config_host_mak
> -else
> -  echo "AUTOCONF_HOST := "                             >> $config_host_mak
> -fi
>  echo "LDFLAGS=$LDFLAGS" >> $config_host_mak
>  echo "LDFLAGS_NOPIE=$LDFLAGS_NOPIE" >> $config_host_mak
>  echo "QEMU_LDFLAGS=$QEMU_LDFLAGS" >> $config_host_mak
> 

Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>