diff options
author | Gregory CLEMENT <gregory.clement@free-electrons.com> | 2014-08-28 14:21:31 +0200 |
---|---|---|
committer | Peter Korsgaard <peter@korsgaard.com> | 2014-09-13 23:56:56 +0200 |
commit | e50431b208ce135808d76bea2492c03e5f34d618 (patch) | |
tree | 47f55efb3177beadb593a52a0c256e2c978e0abb | |
parent | 8b33a9531c4e64a53bfe9fbd59ef454ebd5128e3 (diff) | |
download | buildroot-e50431b208ce135808d76bea2492c03e5f34d618.tar.gz buildroot-e50431b208ce135808d76bea2492c03e5f34d618.zip |
ltrace: Removes the libelf dependency
The libelf is currently provided by 2 packages libelf and
elfutils. The first package provides an old version of the libelf
which is no more compatible with a recent version of ltrace. This
patch removes the dependency on the libelf package and only keep the
elfuils package which provides the accurate version of libelf for
ltrace.
It will also allow to remove the libelf package and to avoid conflicts
with two packages providing the same library.
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Acked-by: "Yann E. MORIN" <yann.morin.1998@free.fr>
Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
-rw-r--r-- | package/ltrace/Config.in | 1 | ||||
-rw-r--r-- | package/ltrace/ltrace.mk | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/package/ltrace/Config.in b/package/ltrace/Config.in index 8cabfa2354..dc759d84c6 100644 --- a/package/ltrace/Config.in +++ b/package/ltrace/Config.in @@ -6,7 +6,6 @@ config BR2_PACKAGE_LTRACE # https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=756764. depends on (BR2_i386 || BR2_arm \ || BR2_powerpc || BR2_sparc || BR2_x86_64) - select BR2_PACKAGE_LIBELF select BR2_PACKAGE_ELFUTILS depends on BR2_LARGEFILE # elfutils depends on BR2_USE_WCHAR # elfutils diff --git a/package/ltrace/ltrace.mk b/package/ltrace/ltrace.mk index 0a3a90c344..48bf7bd5b6 100644 --- a/package/ltrace/ltrace.mk +++ b/package/ltrace/ltrace.mk @@ -6,7 +6,7 @@ LTRACE_VERSION = 0896ce554f80afdcba81d9754f6104f863dea803 LTRACE_SITE = git://anonscm.debian.org/collab-maint/ltrace.git -LTRACE_DEPENDENCIES = libelf elfutils +LTRACE_DEPENDENCIES = elfutils LTRACE_CONF_OPT = --disable-werror LTRACE_LICENSE = GPLv2 LTRACE_LICENSE_FILES = COPYING |