mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
Commits b919d852e2 and
d991d0a3172c8716642f80d607f70b761186c9e6 recently bumped
prelink-cross, but this causes a build breakage in
gobject-introspection, because host-prelink-cross no longer
builds/install the prelink-rtld issue.
While the investigation is on-going, let's revert back to the previous
version of prelink-cross, which is known to work.
We however keep the patch from James, which has been accepted
upstream, and fixes a separate build issue.
Fixes:
/home/autobuild/autobuild/instance-8/output-1/host/or1k-buildroot-linux-gnu/sysroot/usr/bin/g-ir-scanner-lddwrapper: line 3: /home/autobuild/autobuild/instance-8/output-1/host/sbin/prelink-rtld: No such file or directory
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
17 lines
601 B
Makefile
17 lines
601 B
Makefile
################################################################################
|
|
#
|
|
# host-prelink-cross
|
|
#
|
|
################################################################################
|
|
|
|
PRELINK_CROSS_VERSION = a853a5d715d84eec93aa68e8f2df26b7d860f5b2
|
|
PRELINK_CROSS_SITE = https://git.yoctoproject.org/git/prelink-cross
|
|
PRELINK_CROSS_SITE_METHOD = git
|
|
PRELINK_CROSS_LICENSE = GPL-2.0+
|
|
PRELINK_CROSS_LICENSE_FILES = COPYING
|
|
# Sources from git, no configure script present
|
|
PRELINK_CROSS_AUTORECONF = YES
|
|
HOST_PRELINK_CROSS_DEPENDENCIES = host-elfutils host-libiberty
|
|
|
|
$(eval $(host-autotools-package))
|