wavpack: fix broken link on newer binutils

Newer versions of binutils (2.22+) default to --no-copy-dt-needed hence
all the used libraries must be explicitly named.
This is accounted for in the source configure script but not in the
compiled form so we just need to autoreconf it.

[Peter: add comment why autoconf is needed]
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Gustavo Zacarias 2012-12-29 03:06:11 +00:00 committed by Peter Korsgaard
parent 01ac10e0f6
commit 2c5b4ddc19

View File

@ -8,9 +8,10 @@ WAVPACK_VERSION = 4.60.1
WAVPACK_SITE = http://www.wavpack.com WAVPACK_SITE = http://www.wavpack.com
WAVPACK_SOURCE = wavpack-$(WAVPACK_VERSION).tar.bz2 WAVPACK_SOURCE = wavpack-$(WAVPACK_VERSION).tar.bz2
WAVPACK_INSTALL_STAGING = YES WAVPACK_INSTALL_STAGING = YES
# configure not up to date
ifneq ($(BR2_ENABLE_LOCALE),y) WAVPACK_AUTORECONF = YES
WAVPACK_DEPENDENCIES += libiconv WAVPACK_DEPENDENCIES = $(if $(BR2_ENABLE_LOCALE),libiconv)
endif WAVPACK_LICENSE = BSD-3c
WAVPACK_LICENSE_FILES = license.txt
$(eval $(autotools-package)) $(eval $(autotools-package))