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-Tag: v1.6.0-rc0~184^2~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f2c4ddd9c32f7f389e83a0d866fb600e37985d03;p=thirdparty%2Fqemu.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 ad32f87b8eb..bb126e83640 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"