qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] configure: fix ambiguous 'DTC not present' message


From: Antony Pavlov
Subject: [Qemu-devel] [PATCH] configure: fix ambiguous 'DTC not present' message
Date: Wed, 27 Nov 2013 12:12:46 +0400

The word "DTC" (device tree compiler) sometimes
sounds ambiguous.

"DTC not present" sounds like "dt compiler
not present" but QEMU does not need the dt compiler
itself but only libfdt library from DTC distribution.

The phrase "Install the DTC devel package" seems
confusing as dt compiler is a development tool itself.
In the Debian distribution there are separate
'libfdt' and 'device-tree-compiler' packages;
moreover the Debian 'device-tree-compiler' package
does not depend on libfdt.

Signed-off-by: Antony Pavlov <address@hidden>
---
 configure | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/configure b/configure
index 0666228..1384bc3 100755
--- a/configure
+++ b/configure
@@ -2626,8 +2626,8 @@ 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 "DTC not present. Your options:" \
-        "  (1) Preferred: Install the DTC devel package" \
+    error_exit "libfdt not present. Your options:" \
+        "  (1) Preferred: Install the libfdt devel package" \
         "  (2) Fetch the DTC submodule, using:" \
         "      git submodule update --init dtc"
   else
-- 
1.8.4.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]