diff options
author | Andreas Färber | 2013-06-18 01:09:06 +0200 |
---|---|---|
committer | Michael Tokarev | 2013-06-21 20:52:50 +0200 |
commit | f2c4ddd9c32f7f389e83a0d866fb600e37985d03 (patch) | |
tree | b89897f2a15e626b9343bad48fb9ff12cd5f9682 /configure | |
parent | audio: Replace static functions in header file by macros, remove GCC_ATTR (diff) | |
download | qemu-f2c4ddd9c32f7f389e83a0d866fb600e37985d03.tar.gz qemu-f2c4ddd9c32f7f389e83a0d866fb600e37985d03.tar.xz qemu-f2c4ddd9c32f7f389e83a0d866fb600e37985d03.zip |
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 <afaerber@suse.de>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Michael Tokarev <mjt@tls.msk.ru>
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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" |