From patchwork Mon Mar 20 10:25:09 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marcin Nowakowski X-Patchwork-Id: 740932 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (smtp1.osuosl.org [140.211.166.138]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 3vmsXX1B8yz9s0m for ; Mon, 20 Mar 2017 21:25:31 +1100 (AEDT) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id B7E628276E; Mon, 20 Mar 2017 10:25:27 +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 7GVJ67sb90kr; Mon, 20 Mar 2017 10:25:24 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id BCD6481E50; Mon, 20 Mar 2017 10:25:24 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from hemlock.osuosl.org (smtp2.osuosl.org [140.211.166.133]) by ash.osuosl.org (Postfix) with ESMTP id 5CDEE1BFBAD for ; Mon, 20 Mar 2017 10:25:22 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 4C3B3826DB for ; Mon, 20 Mar 2017 10:25:22 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from hemlock.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4nu3Qe2ieH4w for ; Mon, 20 Mar 2017 10:25:20 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from mailapp01.imgtec.com (mailapp01.imgtec.com [195.59.15.196]) by hemlock.osuosl.org (Postfix) with ESMTP id 892438260B for ; Mon, 20 Mar 2017 10:25:20 +0000 (UTC) Received: from hhmail02.hh.imgtec.org (unknown [10.100.10.20]) by Forcepoint Email with ESMTPS id F14D5E8C5699E for ; Mon, 20 Mar 2017 10:25:15 +0000 (GMT) Received: from WR-NOWAKOWSKI.kl.imgtec.org (10.80.2.5) by hhmail02.hh.imgtec.org (10.100.10.21) with Microsoft SMTP Server (TLS) id 14.3.294.0; Mon, 20 Mar 2017 10:25:18 +0000 From: Marcin Nowakowski To: Date: Mon, 20 Mar 2017 11:25:09 +0100 Message-ID: <1490005509-9565-1-git-send-email-marcin.nowakowski@imgtec.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 X-Originating-IP: [10.80.2.5] Cc: Marcin Nowakowski Subject: [Buildroot] [PATCH] package/libkcapi: bump version to latest git hash 79cb80714ebc 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: , Errors-To: buildroot-bounces@busybox.net Sender: "buildroot" Configure script is used to detect options supported by the target compiler, but those options are then incorrectly used by the targets compiled using a host compiler. configure: checking whether CC supports -fstack-protector-strong... yes make: /usr/bin/gcc (...) cc1: error: unrecognized command line option "-fstack-protector-strong" Fixes: http://autobuild.buildroot.net/results/4c0/4c06dfa35ef52f6522619f797a9ae4e7a2e45d04/ http://autobuild.buildroot.net/results/788/78886670cff406a09bd08808d9a6e328ee75634b/ Signed-off-by: Marcin Nowakowski --- package/libkcapi/libkcapi.hash | 2 +- package/libkcapi/libkcapi.mk | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package/libkcapi/libkcapi.hash b/package/libkcapi/libkcapi.hash index e191970..00ee094 100644 --- a/package/libkcapi/libkcapi.hash +++ b/package/libkcapi/libkcapi.hash @@ -1,2 +1,2 @@ # Locally calculated -sha256 1ed007a35d9fe31383d1131e9f8e14af4df8d55e6c48828b5075324b2876364a libkcapi-a039f8a5adca57dc69a19d7361600c2f410e0c26.tar.gz +sha256 e2ebf660029a3565c17220530580d5579b8289bb41ea516a33bf86ef4941e05b libkcapi-79cb80714ebcbae2b9de9bb5aca9a6a546f2f121.tar.gz diff --git a/package/libkcapi/libkcapi.mk b/package/libkcapi/libkcapi.mk index 9488098..74edf2c 100644 --- a/package/libkcapi/libkcapi.mk +++ b/package/libkcapi/libkcapi.mk @@ -4,7 +4,7 @@ # ################################################################################ -LIBKCAPI_VERSION = a039f8a5adca57dc69a19d7361600c2f410e0c26 +LIBKCAPI_VERSION = 79cb80714ebcbae2b9de9bb5aca9a6a546f2f121 LIBKCAPI_SITE = $(call github,smuellerDD,libkcapi,$(LIBKCAPI_VERSION)) LIBKCAPI_AUTORECONF = YES LIBKCAPI_INSTALL_STAGING = YES