diff options
author | Stefan Sørensen <stefan.sorensen@spectralink.com> | 2014-01-14 09:21:36 +0100 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-01-15 22:18:08 +0100 |
commit | e16865a56654511b971d0481eb8601cdf77298d8 (patch) | |
tree | 3fbf79ca1dfd564b14c2ec8270e6231b2da39609 /package/protobuf-c | |
parent | 0a5d5240157f1df80d2457db2a153821f56997d8 (diff) | |
download | buildroot-e16865a56654511b971d0481eb8601cdf77298d8.tar.gz buildroot-e16865a56654511b971d0481eb8601cdf77298d8.zip |
protobuf-c: Don't require protobuf on target.
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 <stefan.sorensen@spectralink.com>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/protobuf-c')
-rw-r--r-- | package/protobuf-c/Config.in | 1 | ||||
-rw-r--r-- | package/protobuf-c/protobuf-c.mk | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/package/protobuf-c/Config.in b/package/protobuf-c/Config.in index 3baa05e895..732befc9c0 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 271f6d812b..42f592b38e 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 |