From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33581) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W6VkJ-0008Su-RD for qemu-devel@nongnu.org; Thu, 23 Jan 2014 20:39:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1W6VkA-0000SK-5u for qemu-devel@nongnu.org; Thu, 23 Jan 2014 20:39:47 -0500 Received: from e28smtp07.in.ibm.com ([122.248.162.7]:46322) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1W6Vk9-0000RU-H1 for qemu-devel@nongnu.org; Thu, 23 Jan 2014 20:39:38 -0500 Received: from /spool/local by e28smtp07.in.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Fri, 24 Jan 2014 07:09:31 +0530 From: Stewart Smith Date: Fri, 24 Jan 2014 12:39:06 +1100 Message-Id: <1390527551-22069-2-git-send-email-stewart@linux.vnet.ibm.com> In-Reply-To: <1390527551-22069-1-git-send-email-stewart@linux.vnet.ibm.com> References: <1390452896-20146-1-git-send-email-stewart@linux.vnet.ibm.com> <1390527551-22069-1-git-send-email-stewart@linux.vnet.ibm.com> Subject: [Qemu-devel] [PATCH v2 1/6] configure: add hint of libfdt to DTC dependency not found message List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: qemu-trivial@nongnu.org, Stewart Smith Most distros package it as libfdt, and mentioning libfdt here makes it much easier to find the package you're missing. Signed-off-by: Stewart Smith --- configure | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/configure b/configure index 3782a6a..8b6e64a 100755 --- a/configure +++ b/configure @@ -2654,8 +2654,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 "DTC (libfdt) not present. Your options:" \ + " (1) Preferred: Install the DTC (libfdt) devel package" \ " (2) Fetch the DTC submodule, using:" \ " git submodule update --init dtc" else -- 1.8.4.2