From patchwork Wed Jul 15 17:31:04 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Clayton Shotwell X-Patchwork-Id: 495915 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 BCD961402AB for ; Thu, 16 Jul 2015 03:31:16 +1000 (AEST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id D4970A442F; Wed, 15 Jul 2015 17:31:15 +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 OltkEiru1YeM; Wed, 15 Jul 2015 17:31:13 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id E50F5A474D; Wed, 15 Jul 2015 17:31:12 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from fraxinus.osuosl.org (smtp4.osuosl.org [140.211.166.137]) by ash.osuosl.org (Postfix) with ESMTP id A2B661C25F1 for ; Wed, 15 Jul 2015 17:31:11 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 9EFB3A442F for ; Wed, 15 Jul 2015 17:31:11 +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 5-MQRnnRrZKH for ; Wed, 15 Jul 2015 17:31:07 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from ch3vs01.rockwellcollins.com (ch3vs01.rockwellcollins.com [205.175.226.27]) by fraxinus.osuosl.org (Postfix) with ESMTPS id B2958A474D for ; Wed, 15 Jul 2015 17:31:07 +0000 (UTC) Received: from ofwch3n02.rockwellcollins.com (HELO dtulimr01.rockwellcollins.com) ([205.175.226.14]) by ch3vs01.rockwellcollins.com with ESMTP; 15 Jul 2015 12:31:06 -0500 X-Received: from thehammer.rockwellcollins.com (unknown [192.168.141.197]) by dtulimr01.rockwellcollins.com (Postfix) with ESMTP id DB3BC60176; Wed, 15 Jul 2015 12:31:05 -0500 (CDT) From: Clayton Shotwell To: buildroot@buildroot.org Date: Wed, 15 Jul 2015 12:31:04 -0500 Message-Id: <1436981464-55916-1-git-send-email-clayton.shotwell@rockwellcollins.com> X-Mailer: git-send-email 1.9.1 Cc: Clayton Shotwell Subject: [Buildroot] [PATCH] setool: Add missing bison dependency 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" The setools package needs the yacc utility which is part of the bison package to build. Fixes http://autobuild.buildroot.net/results/8f9/8f95e83411552397ca29e9aee5c457a1a762b364/ Signed-off-by: Clayton Shotwell --- package/setools/setools.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/setools/setools.mk b/package/setools/setools.mk index 912daf8..a2bfd42 100644 --- a/package/setools/setools.mk +++ b/package/setools/setools.mk @@ -7,7 +7,7 @@ SETOOLS_VERSION = 3.3.8 SETOOLS_SOURCE = setools-$(SETOOLS_VERSION).tar.bz2 SETOOLS_SITE = https://raw.githubusercontent.com/wiki/TresysTechnology/setools3/files/dists/setools-$(SETOOLS_VERSION)/ -SETOOLS_DEPENDENCIES = libselinux libsepol sqlite libxml2 bzip2 +SETOOLS_DEPENDENCIES = libselinux libsepol sqlite libxml2 bzip2 host-bison SETOOLS_INSTALL_STAGING = YES SETOOLS_LICENSE = GPLv2+ LGPLv2.1+ SETOOLS_LICENSE_FILES = COPYING COPYING.GPL COPYING.LGPL @@ -32,7 +32,7 @@ SETOOLS_CONF_OPTS = \ --with-selinux-devel="$(STAGING_DIR)/usr" HOST_SETOOLS_DEPENDENCIES = host-libselinux host-libsepol host-sqlite \ - host-libxml2 host-bzip2 + host-libxml2 host-bzip2 host-bison ifeq ($(BR2_PACKAGE_PYTHON3),y) HOST_SETOOLS_PYTHON_VERSION=$(PYTHON3_VERSION_MAJOR)