From patchwork Mon May 13 13:01:26 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 243398 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from hemlock.osuosl.org (hemlock.osuosl.org [140.211.166.133]) by ozlabs.org (Postfix) with ESMTP id D33822C00A7 for ; Mon, 13 May 2013 23:01:41 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by hemlock.osuosl.org (Postfix) with ESMTP id 57213A01BE; Mon, 13 May 2013 13:01:38 +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 L2iSktHOUDiB; Mon, 13 May 2013 13:01:36 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by hemlock.osuosl.org (Postfix) with ESMTP id BA9EEA00E8; Mon, 13 May 2013 13:01:36 +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 1B1218F79A for ; Mon, 13 May 2013 13:01:45 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 3ED128BDFD for ; Mon, 13 May 2013 13:01:37 +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 LRd3HIaP85ni for ; Mon, 13 May 2013 13:01: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 8FAE78108E for ; Mon, 13 May 2013 13:01:35 +0000 (UTC) Received: from asgard (host147.190-138-228.telecom.net.ar [190.138.228.147]) (authenticated bits=0) by loknar.toptech.com.ar (8.14.7/8.14.7) with ESMTP id r4DD1SxV025972 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 13 May 2013 13:01:31 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1368450093; bh=slrzAvludS26nibWLSvBMo4X/pndz+TJM5Em+O+xTEM=; h=From:To:Cc:Subject:Date; b=uh2iXZQtqiriV/DBYzTHqTs1Z58FYDQNfHQyYUHbI7Yd3IgY8/PLrSUf8Kx92hBcm NZp5/WS8W+y8Tpbn/tHwh0IB7v/TBbBB4CYoYvmIyQnZqKnnmJx7ucC0sxk1k49MeR UUztLhshsvPjfEigvC6dRtBklzO2L8dBThbZUZFg= Received: by asgard (sSMTP sendmail emulation); Mon, 13 May 2013 10:01:26 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Mon, 13 May 2013 10:01:26 -0300 Message-Id: <1368450086-8430-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] curlftpfs: specify curl-config path 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 curlftpfs may pick up the distribution curl-config rather than the one in the staging area thus failing to build. Fix it by hardcoding the curl-config path. Signed-off-by: Gustavo Zacarias --- package/curlftpfs/curlftpfs.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/package/curlftpfs/curlftpfs.mk b/package/curlftpfs/curlftpfs.mk index c7d04ae..ff70f3b 100644 --- a/package/curlftpfs/curlftpfs.mk +++ b/package/curlftpfs/curlftpfs.mk @@ -6,6 +6,7 @@ CURLFTPFS_VERSION = 0.9.2 CURLFTPFS_SITE = http://downloads.sourceforge.net/project/curlftpfs/curlftpfs/$(CURLFTPFS_VERSION) +CURLFTPFS_CONF_ENV = ac_cv_path__libcurl_config=$(STAGING_DIR)/usr/bin/curl-config CURLFTPFS_DEPENDENCIES = \ libglib2 libfuse openssl libcurl \ $(if $(BR2_NEEDS_GETTEXT_IF_LOCALE),gettext) \