From: Andreas Färber Date: Mon, 17 Jun 2013 23:09:06 +0000 (+0200) Subject: configure: Fix "ERROR: ERROR: " for missing/incompatible DTC X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=f2c4ddd9c32f7f389e83a0d866fb600e37985d03;p=qemu.git configure: Fix "ERROR: ERROR: " for missing/incompatible DTC 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 --- 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"