From patchwork Tue Jan 14 08:21:36 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: =?utf-8?q?S=C3=B8rensen=2C_Stefan?= X-Patchwork-Id: 310506 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 B8BC12C0098 for ; Tue, 14 Jan 2014 19:39:13 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id DDA1A8BFF3; Tue, 14 Jan 2014 08:39:12 +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 L60vdfPbMhXh; Tue, 14 Jan 2014 08:39:08 +0000 (UTC) Received: from ash.osuosl.org (ash.osuosl.org [140.211.166.34]) by whitealder.osuosl.org (Postfix) with ESMTP id CEA4F8B5B8; Tue, 14 Jan 2014 08:39:07 +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 053A91CE801 for ; Tue, 14 Jan 2014 08:39:05 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by whitealder.osuosl.org (Postfix) with ESMTP id F33798B2C0 for ; Tue, 14 Jan 2014 08:39:04 +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 wH5Va6XYD93V for ; Tue, 14 Jan 2014 08:39:04 +0000 (UTC) X-Greylist: domain auto-whitelisted by SQLgrey-1.7.6 Received: from HORWDSPRD01.spectralink.com (213083164162.static.sonofon.dk [213.83.164.162]) by whitealder.osuosl.org (Postfix) with ESMTP id 128A489D87 for ; Tue, 14 Jan 2014 08:39:03 +0000 (UTC) Received: from e37108.spectralink.com ([172.29.194.63]) by HORWDSPRD01.spectralink.com with Microsoft SMTPSVC(7.5.7600.16601); Tue, 14 Jan 2014 09:21:45 +0100 Received: by e37108.spectralink.com (sSMTP sendmail emulation); Tue, 14 Jan 2014 09:21:44 +0100 From: =?UTF-8?q?Stefan=20S=C3=B8rensen?= To: buildroot@busybox.net Date: Tue, 14 Jan 2014 09:21:36 +0100 Message-Id: <1389687696-4824-3-git-send-email-stefan.sorensen@spectralink.com> X-Mailer: git-send-email 1.8.4.2 In-Reply-To: <1389687696-4824-1-git-send-email-stefan.sorensen@spectralink.com> References: <1389687696-4824-1-git-send-email-stefan.sorensen@spectralink.com> MIME-Version: 1.0 X-OriginalArrivalTime: 14 Jan 2014 08:21:45.0038 (UTC) FILETIME=[A951BEE0:01CF1101] Subject: [Buildroot] [PATCH 3/3] protobuf-c: Don't require protobuf on target. 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: , Errors-To: buildroot-bounces@busybox.net Sender: buildroot-bounces@busybox.net protobuf-c only requires protobuf when building the protoc compiler, hence protobuf can be dropped from the target dependencies. Signed-off-by: Stefan Sørensen --- package/protobuf-c/Config.in | 1 - package/protobuf-c/protobuf-c.mk | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/package/protobuf-c/Config.in b/package/protobuf-c/Config.in index 3baa05e..732befc 100644 --- a/package/protobuf-c/Config.in +++ b/package/protobuf-c/Config.in @@ -2,7 +2,6 @@ config BR2_PACKAGE_PROTOBUF_C bool "protobuf-c" depends on BR2_INSTALL_LIBSTDCPP depends on BR2_TOOLCHAIN_HAS_THREADS # protobuf - select BR2_PACKAGE_PROTOBUF help Code generator and runtime libraries to use Protocol Buffers from pure C (not C++). diff --git a/package/protobuf-c/protobuf-c.mk b/package/protobuf-c/protobuf-c.mk index 271f6d8..42f592b 100644 --- a/package/protobuf-c/protobuf-c.mk +++ b/package/protobuf-c/protobuf-c.mk @@ -6,7 +6,7 @@ PROTOBUF_C_VERSION = 0.15 PROTOBUF_C_SITE = http://protobuf-c.googlecode.com/files -PROTOBUF_C_DEPENDENCIES = protobuf host-protobuf-c +PROTOBUF_C_DEPENDENCIES = host-protobuf-c HOST_PROTOBUF_C_DEPENDENCIES = host-protobuf PROTOBUF_C_MAKE = $(MAKE1) PROTOBUF_C_CONF_OPT = --disable-protoc