From patchwork Tue Sep 8 14:05:06 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Brendan Heading X-Patchwork-Id: 515411 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id B45DB14090A for ; Wed, 9 Sep 2015 00:05:17 +1000 (AEST) Authentication-Results: ozlabs.org; dkim=fail reason="signature verification failed" (2048-bit key; unprotected) header.d=gmail.com header.i=@gmail.com header.b=ZE7HW0gK; dkim-atps=neutral Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 0DA5BA392C; Tue, 8 Sep 2015 14:05:17 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from fraxinus.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id rFfL14_51yRO; Tue, 8 Sep 2015 14:05:15 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id 298A4A3E09; Tue, 8 Sep 2015 14:05:15 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id D86F71CE52E for ; Tue, 8 Sep 2015 14:05:13 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id D4EC29284F for ; Tue, 8 Sep 2015 14:05:13 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from whitealder.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id W-foUzcqLjhr for ; Tue, 8 Sep 2015 14:05:13 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mail-wi0-f181.google.com (mail-wi0-f181.google.com [209.85.212.181]) by whitealder.osuosl.org (Postfix) with ESMTPS id 0E00E92839 for ; Tue, 8 Sep 2015 14:05:13 +0000 (UTC) Received: by wicgb1 with SMTP id gb1so79692238wic.1 for ; Tue, 08 Sep 2015 07:05:11 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:to:cc:subject:date:message-id; bh=oSVLUOtS8c4SqX39hv0ubw1JNhk9vBDftWgH1qf4D6w=; b=ZE7HW0gK4IxLKggUZwLSYF5v6pdNLDhK7I8ELkAlfDkwj564O8DYadIEhHO6fpafIp sXSP1NPuJ7YJxcomxKpGKFiy2RUWkaizF7VVdjCGwy/nscs2iE1j2vwOSsXrzLisP3de 3mGRBxU2wmklepwFzwkCcrXVvZVAE9mSA3SgMrtClu+9Tp3VWqRbP8NkkY/zitoeDXS/ +aBSJW1iHg6yC1QK28enkXrf+MceQigCjPx5mvla9lcInElW9ncbBCVoBSDTBxTlz5se Q/UIC11kSZTXBBvH3Jfx4k6kx08EjLpef1n9H3ntJWEE2eNgb8uxUt+Htbmo9aUiFfxU GPQw== X-Received: by 10.180.96.166 with SMTP id dt6mr7777888wib.38.1441721109599; Tue, 08 Sep 2015 07:05:09 -0700 (PDT) Received: from bhfedora.localdomain ([82.15.84.251]) by smtp.gmail.com with ESMTPSA id p3sm5054350wib.16.2015.09.08.07.05.08 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Tue, 08 Sep 2015 07:05:09 -0700 (PDT) From: Brendan Heading To: buildroot@buildroot.org Date: Tue, 8 Sep 2015 15:05:06 +0100 Message-Id: <1441721106-27234-1-git-send-email-brendanheading@gmail.com> X-Mailer: git-send-email 2.4.3 Cc: Brendan Heading Subject: [Buildroot] [PATCH 1/1] package/host-gdb: fix autobuild failure X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: Discussion and development of buildroot List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Fixes : http://autobuild.buildroot.net/results/dd5/dd50ed99abb2c8495def826866b184030953f90e/ .. and many others. host-gdb is broken on all architectures at the moment, as it seems to require makeinfo during "make install" even if configure failed to detect it. Instead of trying to hack it, let's simply make gdb dependent on host-texinfo. Signed-off-by: Brendan Heading --- package/gdb/gdb.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/gdb/gdb.mk b/package/gdb/gdb.mk index 338de20..efe195a 100644 --- a/package/gdb/gdb.mk +++ b/package/gdb/gdb.mk @@ -40,7 +40,7 @@ endif # For the host variant, we really want to build with XML support, # which is needed to read XML descriptions of target architectures. We # also need ncurses. -HOST_GDB_DEPENDENCIES = host-expat host-ncurses +HOST_GDB_DEPENDENCIES = host-expat host-ncurses host-texinfo # Apply the Xtensa specific patches XTENSA_CORE_NAME = $(call qstrip, $(BR2_XTENSA_CORE_NAME))