From patchwork Thu Jun 6 14:42:18 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 249437 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ozlabs.org (Postfix) with ESMTP id 20C5F2C007C for ; Fri, 7 Jun 2013 00:42:41 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 73AC88D08D; Thu, 6 Jun 2013 14:42:36 +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 01eURab+yDRV; Thu, 6 Jun 2013 14:42:32 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id 40A648CFCF; Thu, 6 Jun 2013 14:42:31 +0000 (UTC) X-Original-To: buildroot@lists.busybox.net Delivered-To: buildroot@osuosl.org Received: from whitealder.osuosl.org (whitealder.osuosl.org [140.211.166.138]) by ash.osuosl.org (Postfix) with ESMTP id 5EA568F753 for ; Thu, 6 Jun 2013 14:42:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 3067F8CFCF for ; Thu, 6 Jun 2013 14:42:29 +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 9zoU-HewvpqO for ; Thu, 6 Jun 2013 14:42:27 +0000 (UTC) X-Greylist: from auto-whitelisted by SQLgrey-1.7.6 Received: from loknar.toptech.com.ar (loknar.toptech.com.ar [78.46.79.162]) by whitealder.osuosl.org (Postfix) with ESMTPS id 31B288CA92 for ; Thu, 6 Jun 2013 14:42:26 +0000 (UTC) Received: from asgard (host113.181-14-142.telecom.net.ar [181.14.142.113]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.7/8.14.7) with ESMTP id r56EgJhx020407 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Thu, 6 Jun 2013 14:42:22 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1370529744; bh=SyxsIzXQiFFNWrjTKPtH4hxbrHsvvOEK/T2/D9p/iSo=; h=From:To:Cc:Subject:Date; b=uKyeKweaS7mX6OIoZhIRoTI7VRLeCVmoKD4jjGeFPM70sX++cnRHQXJjZdut9mkiy 3ALiZJ8n4zubsySG/FuuiOlEjMzOKeWvI/caWlMrQTHZ8hy5/UOWD05/9xAfmE25Sn Eq0BHn51Q99z/cJw6dn14Fvx1OhetaF7PmhXWepI= Received: by asgard (sSMTP sendmail emulation); Thu, 06 Jun 2013 11:42:18 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Thu, 6 Jun 2013 11:42:18 -0300 Message-Id: <1370529738-5275-1-git-send-email-gustavo@zacarias.com.ar> X-Mailer: git-send-email 1.8.1.5 X-Virus-Scanned: clamav-milter 0.97.7 at loknar X-Virus-Status: Clean Subject: [Buildroot] [PATCH] p11-kit: fix __progname build failure X-BeenThere: buildroot@busybox.net X-Mailman-Version: 2.1.14 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-bounces@busybox.net Even though we've got UCLIBC_HAS___PROGNAME=y in our internal toolchains the build seems to fail under some circumstances. Since program_invocation_short_name is equally as useful just disable __progname usage. Fixes: http://autobuild.buildroot.net/results/cc8/cc861f5a034a0922a90fb6f22835a1fe8205d497/ Signed-off-by: Gustavo Zacarias --- package/p11-kit/p11-kit.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/p11-kit/p11-kit.mk b/package/p11-kit/p11-kit.mk index 89774dc..6cb81ee 100644 --- a/package/p11-kit/p11-kit.mk +++ b/package/p11-kit/p11-kit.mk @@ -10,7 +10,7 @@ P11_KIT_DEPENDENCIES = host-pkgconf libtasn1 P11_KIT_INSTALL_STAGING = YES P11_KIT_CONF_OPT = --disable-static P11_KIT_CONF_ENV = ac_cv_have_decl_program_invocation_short_name=yes \ - ac_cv_have_decl___progname=yes + ac_cv_have_decl___progname=no P11_KIT_LICENSE = BSD-3c P11_KIT_LICENSE_FILES = COPYING