From patchwork Mon May 13 10:52:29 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gustavo Zacarias X-Patchwork-Id: 243360 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from fraxinus.osuosl.org (fraxinus.osuosl.org [140.211.166.137]) by ozlabs.org (Postfix) with ESMTP id 101082C009F for ; Mon, 13 May 2013 20:52:45 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by fraxinus.osuosl.org (Postfix) with ESMTP id 4366F10B888; Mon, 13 May 2013 10:52:25 +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 VeWx9Tka5e+z; Mon, 13 May 2013 10:52:23 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by fraxinus.osuosl.org (Postfix) with ESMTP id DEE02101BD1; Mon, 13 May 2013 10:52:22 +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 274058F79E for ; Mon, 13 May 2013 10:52:48 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id 6A1AF8C60F for ; Mon, 13 May 2013 10:52:40 +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 0nHlxXQZtMRf for ; Mon, 13 May 2013 10:52:39 +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 B2C758A37A for ; Mon, 13 May 2013 10:52:38 +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 r4DAqVmi021851 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-GCM-SHA384 bits=256 verify=NO); Mon, 13 May 2013 10:52:34 GMT DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=zacarias.com.ar; s=dkey; t=1368442355; bh=6NNWlIcevo96UBxe1Amw1wmUMVa88its1SyL8z1cwqA=; h=From:To:Cc:Subject:Date; b=ZE79r+JgWGKkWargslxA+kkYuhzXoayJR5XRUO0V41IU5MqJ26Qwl1j/v7FtaBMK+ 8raSn5s6ZUzVmTVyiOTpDy7dfxnLXZRnfb83HUuPUUQ5kS8jKlXYNptj1f82tViarF j0yP0TqbRBQ/9uqjUfRojsgy3S1ovURcoWEa+KgE= Received: by asgard (sSMTP sendmail emulation); Mon, 13 May 2013 07:52:30 -0300 From: Gustavo Zacarias To: buildroot@busybox.net Date: Mon, 13 May 2013 07:52:29 -0300 Message-Id: <1368442349-10496-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] linknx: fix dependencies 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 The mysql_client is set instead of added, thus eliminating libpthsem. Signed-off-by: Gustavo Zacarias --- package/linknx/linknx.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package/linknx/linknx.mk b/package/linknx/linknx.mk index 54e0426..701eabf 100644 --- a/package/linknx/linknx.mk +++ b/package/linknx/linknx.mk @@ -15,7 +15,7 @@ LINKNX_DEPENDENCIES = libpthsem ifeq ($(BR2_PACKAGE_MYSQL_CLIENT),y) LINKNX_CONF_OPT += --with-mysql=$(STAGING_DIR)/usr/bin/mysql_config -LINKNX_DEPENDENCIES = mysql_client +LINKNX_DEPENDENCIES += mysql_client else LINKNX_CONF_OPT += --without-mysql endif