From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:39331) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UoiY0-0000Zc-SN for qemu-devel@nongnu.org; Mon, 17 Jun 2013 19:09:17 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UoiXy-0000Ov-DG for qemu-devel@nongnu.org; Mon, 17 Jun 2013 19:09:16 -0400 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Tue, 18 Jun 2013 01:09:06 +0200 Message-Id: <1371510546-28585-1-git-send-email-afaerber@suse.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PATCH] configure: Fix "ERROR: ERROR: " for missing/incompatible DTC List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, peter.maydell@linaro.org, =?UTF-8?q?Andreas=20F=C3=A4rber?= error_exit already prepends "ERROR: ", so no need to print it manually. Signed-off-by: Andreas F=C3=A4rber --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index ad32f87..bb126e8 100755 --- a/configure +++ b/configure @@ -2529,7 +2529,7 @@ EOF fdt_libs=3D"-L\$(BUILD_DIR)/dtc/libfdt $fdt_libs" elif test "$fdt" =3D "yes" ; then # have neither and want - prompt for system/submodule install - error_exit "ERROR: DTC not present. Your options:" \ + error_exit "DTC not present. Your options:" \ " (1) Preferred: Install the DTC devel package" \ " (2) Fetch the DTC submodule, using:" \ " git submodule update --init dtc" --=20 1.8.1.4