From patchwork Tue Sep 3 13:27:21 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 272249 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from silver.osuosl.org (silver.osuosl.org [140.211.166.136]) by ozlabs.org (Postfix) with ESMTP id 46F142C009E for ; Tue, 3 Sep 2013 23:27:41 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by silver.osuosl.org (Postfix) with ESMTP id 2D25B316F8; Tue, 3 Sep 2013 13:27:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at osuosl.org Received: from silver.osuosl.org ([127.0.0.1]) by localhost (.osuosl.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id qduNDAY59MHj; Tue, 3 Sep 2013 13:27:29 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by silver.osuosl.org (Postfix) with ESMTP id CFE75200E5; Tue, 3 Sep 2013 13:27:28 +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 F3C481BFA1F for ; Tue, 3 Sep 2013 13:27:36 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id EDE6B8B17B for ; Tue, 3 Sep 2013 13:27: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 Qjtq+671cXv7 for ; Tue, 3 Sep 2013 13:27:35 +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 5C46789B1D for ; Tue, 3 Sep 2013 13:27:34 +0000 (UTC) Received: from asgard (host126.190-136-121.telecom.net.ar [190.136.121.126]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.7/8.14.7) with ESMTP id r83DRRlA017380 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Tue, 3 Sep 2013 13:27:30 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1378214852; bh=MvmKwlMrun0gJAupkh0E8LIst/bkQTqS5mEwG83xB6s=; h=From:To:Cc:Subject:Date; b=S3lmymOn2lpL+c8IAgd9GZ4kC4AYwB5upLs1y6DPjguKoHbBBtc0T4NCbhujN4qRh kzwePjXdCvkzy/zeRYsbj2dKxfaowSs8eh0UJvegnHw8owPxtq4ZUKf+uj4ul7Gtxo bSqjWFl+iyDuEfJ+E1IEjAz0BPQJbvMlmwuHrVns= Received: by asgard (sSMTP sendmail emulation); Tue, 03 Sep 2013 10:27:21 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Tue, 3 Sep 2013 10:27:21 -0300 Message-Id: <1378214841-12006-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] libsecret: specify where libgcrypt lives 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 When libgcrypt support is enabled the configure script will try to find libgcrypt-config in the PATH. If the host distribution has it then brokeness ensues. Fixes: http://autobuild.buildroot.net/results/eca/eca10b8360354e7e51406f7ac942d343987bde5e/ Signed-off-by: Gustavo Zacarias --- package/libsecret/libsecret.mk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/package/libsecret/libsecret.mk b/package/libsecret/libsecret.mk index e445ea6..a0f39f8 100644 --- a/package/libsecret/libsecret.mk +++ b/package/libsecret/libsecret.mk @@ -16,7 +16,8 @@ LIBSECRET_CONF_OPT = --disable-manpages --disable-strict --disable-coverage --en ifeq ($(BR2_PACKAGE_LIBGCRYPT),y) LIBSECRET_DEPENDENCIES += libgcrypt - LIBSECRET_CONF_OPT += --enable-gcrypt + LIBSECRET_CONF_OPT += --enable-gcrypt \ + --with-libgcrypt-prefix=$(STAGING_DIR)/usr else LIBSECRET_CONF_OPT += --disable-gcrypt endif