mirror of
https://git.yoctoproject.org/poky
synced 2026-04-21 03:32:12 +02:00
gtk+3: fix reproducible build failure
There's a build race between the use of a pre-generated file and re-generating it again, which breaks reproducible builds. Solve the race by deleting the shipped generated file. (From OE-Core rev: c2e0b0785b8098dbe562e88f54b679ca87626937) Signed-off-by: Ross Burton <ross.burton@arm.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
07a73aae71
commit
df2c56f4d5
@@ -1,3 +1,4 @@
|
||||
|
||||
SUMMARY = "Multi-platform toolkit for creating GUIs"
|
||||
DESCRIPTION = "GTK+ is a multi-platform toolkit for creating graphical user interfaces. Offering a complete \
|
||||
set of widgets, GTK+ is suitable for projects ranging from small one-off projects to complete application suites."
|
||||
@@ -31,6 +32,13 @@ do_configure_prepend() {
|
||||
ln -s ${TARGET_PREFIX}libtool libtool
|
||||
#delete a file that will get confused with generated one in ${B}
|
||||
rm -f ${S}/gtk/gtktypefuncs.c
|
||||
|
||||
# These files are generated by wayland-scanner but will race over modification
|
||||
# time between the copies in the sysroot from wayland-protocols and the copy
|
||||
# in the source tree. Solve the race by deleting so they need to be regenerated.
|
||||
# 3.24.22 will not be shipping these files so this can be deleted then:
|
||||
# https://gitlab.gnome.org/GNOME/gtk/-/merge_requests/2183
|
||||
rm -f ${S}/modules/input/text-input-unstable-v3*.[ch]
|
||||
}
|
||||
|
||||
EXTRA_OECONF += " \
|
||||
|
||||
Reference in New Issue
Block a user