[Qemu-devel] [PATCH] configure: Fix cut-n-paste errors in OS deprecation warning

Peter Maydell posted 1 patch 7 years, 1 month ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/1490119729-26206-1-git-send-email-peter.maydell@linaro.org
Test checkpatch passed
Test docker passed
Test s390x passed
configure | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
[Qemu-devel] [PATCH] configure: Fix cut-n-paste errors in OS deprecation warning
Posted by Peter Maydell 7 years, 1 month ago
Fix some cut-and-paste errors in the OS deprecation warning
pointed out by Thomas Huth.

Reported-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
 configure | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure b/configure
index 3291603..d1ce33b 100755
--- a/configure
+++ b/configure
@@ -5144,8 +5144,8 @@ if test "$supported_os" = "no"; then
     echo
     echo "WARNING: SUPPORT FOR THIS HOST OS WILL GO AWAY IN FUTURE RELEASES!"
     echo
-    echo "CPU host OS $targetos support is not currently maintained."
-    echo "The QEMU project intends to remove support for this host CPU in"
+    echo "Host OS $targetos support is not currently maintained."
+    echo "The QEMU project intends to remove support for this host OS in"
     echo "a future release if nobody volunteers to maintain it and to"
     echo "provide a build host for our continuous integration setup."
     echo "configure has succeeded and you can continue to build, but"
-- 
2.7.4


Re: [Qemu-devel] [PATCH] configure: Fix cut-n-paste errors in OS deprecation warning
Posted by Stefan Hajnoczi 7 years, 1 month ago
On Tue, Mar 21, 2017 at 06:08:49PM +0000, Peter Maydell wrote:
> Fix some cut-and-paste errors in the OS deprecation warning
> pointed out by Thomas Huth.
> 
> Reported-by: Thomas Huth <thuth@redhat.com>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
>  configure | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
Re: [Qemu-devel] [PATCH] configure: Fix cut-n-paste errors in OS deprecation warning
Posted by Peter Maydell 7 years, 1 month ago
On 23 March 2017 at 08:58, Stefan Hajnoczi <stefanha@gmail.com> wrote:
> On Tue, Mar 21, 2017 at 06:08:49PM +0000, Peter Maydell wrote:
>> Fix some cut-and-paste errors in the OS deprecation warning
>> pointed out by Thomas Huth.
>>
>> Reported-by: Thomas Huth <thuth@redhat.com>
>> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
>> ---
>>  configure | 4 ++--
>>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>

Thanks; applied to master.

-- PMM