From patchwork Sun Sep 27 16:07:41 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Michael Tokarev X-Patchwork-Id: 50322 Received: from vger.kernel.org (vger.kernel.org [209.132.176.167]) by demeter.kernel.org (8.14.2/8.14.2) with ESMTP id n8RG7mDj013537 for ; Sun, 27 Sep 2009 16:07:49 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753344AbZI0QHl (ORCPT ); Sun, 27 Sep 2009 12:07:41 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1753325AbZI0QHk (ORCPT ); Sun, 27 Sep 2009 12:07:40 -0400 Received: from isrv.corpit.ru ([81.13.33.159]:38108 "EHLO isrv.corpit.ru" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753270AbZI0QHk (ORCPT ); Sun, 27 Sep 2009 12:07:40 -0400 Received: from [192.168.88.2] (unknown [192.168.10.88]) by isrv.corpit.ru (Postfix) with ESMTP id 7B89A341A6; Sun, 27 Sep 2009 20:07:42 +0400 (MSD) (envelope-from mjt@tls.msk.ru) Message-ID: <4ABF8DCD.8080603@msgid.tls.msk.ru> Date: Sun, 27 Sep 2009 20:07:41 +0400 From: Michael Tokarev Organization: Telecom Service, JSC User-Agent: Mozilla-Thunderbird 2.0.0.22 (X11/20090706) MIME-Version: 1.0 To: KVM list Subject: trivial patch: echo -e in ./configure Sender: kvm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: kvm@vger.kernel.org The following one-liner eliminates an annoying -e output during ./configure run if your /bin/sh is not bash or ksh: $ ./configure ... IO thread no Install blobs yes -e KVM support yes <=== KVM trace support no fdt support no preadv support no $ _ (I dunno if it's qemu or kvm thing) Thanks! /mjt --- -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html --- qemu-kvm-0.11.0/configure.sav 2009-09-23 11:30:02.000000000 +0400 +++ qemu-kvm-0.11.0/configure 2009-09-27 20:04:03.230408438 +0400 @@ -1591 +1591 @@ -echo -e "KVM support $kvm" +echo "KVM support $kvm"