From f2c4ddd9c32f7f389e83a0d866fb600e37985d03 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Tue, 18 Jun 2013 01:09:06 +0200 Subject: [PATCH] configure: Fix "ERROR: ERROR: " for missing/incompatible DTC MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit error_exit already prepends "ERROR: ", so no need to print it manually. Signed-off-by: Andreas Färber Reviewed-by: Peter Maydell Signed-off-by: Michael Tokarev --- configure | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure b/configure index ad32f87b8e..bb126e8364 100755 --- a/configure +++ b/configure @@ -2529,7 +2529,7 @@ EOF fdt_libs="-L\$(BUILD_DIR)/dtc/libfdt $fdt_libs" elif test "$fdt" = "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"