mirror of
https://git.yoctoproject.org/poky
synced 2026-05-08 05:09:24 +00:00
epiphany: Fix reproducibility issue
We don't want to encide BUILD_ROOT into target packages. This is used for build time tests but in our case those would be on target anyway do use the target paths. (From OE-Core rev: 2818dc90bd62487879e7da2c68357b39282415b0) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
@@ -30,7 +30,6 @@ import datetime
|
||||
exclude_packages = [
|
||||
'bootchart2-doc',
|
||||
'efivar',
|
||||
'epiphany',
|
||||
'glide',
|
||||
'go-dep',
|
||||
'go-helloworld',
|
||||
|
||||
@@ -13,6 +13,7 @@ REQUIRED_DISTRO_FEATURES = "x11 opengl"
|
||||
|
||||
SRC_URI = "${GNOME_MIRROR}/${GNOMEBN}/${@gnome_verdir("${PV}")}/${GNOMEBN}-${PV}.tar.${GNOME_COMPRESS_TYPE};name=archive \
|
||||
file://0002-help-meson.build-disable-the-use-of-yelp.patch \
|
||||
file://migrator.patch \
|
||||
"
|
||||
SRC_URI[archive.sha256sum] = "8b05f2bcc1e80ecf4a10f6f01b3285087eb4cbdf5741dffb8c0355715ef5116d"
|
||||
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
We don't want to encide BUILD_ROOT into target packages. This is used
|
||||
for build time tests but in our case those would be on target anyway
|
||||
do use the target paths.
|
||||
|
||||
Upstream-Status: Pending
|
||||
RP 2021/2/25
|
||||
|
||||
Index: epiphany-3.38.2/lib/ephy-profile-utils.c
|
||||
===================================================================
|
||||
--- epiphany-3.38.2.orig/lib/ephy-profile-utils.c
|
||||
+++ epiphany-3.38.2/lib/ephy-profile-utils.c
|
||||
@@ -130,10 +130,10 @@ ephy_profile_utils_do_migration (const c
|
||||
argv[i++] = NULL;
|
||||
|
||||
#if DEVELOPER_MODE
|
||||
- argv[0] = BUILD_ROOT "/src/" EPHY_PROFILE_MIGRATOR;
|
||||
+ argv[0] = PKGLIBEXECDIR "/" EPHY_PROFILE_MIGRATOR;
|
||||
#else
|
||||
if (debug)
|
||||
- argv[0] = BUILD_ROOT "/src/" EPHY_PROFILE_MIGRATOR;
|
||||
+ argv[0] = PKGLIBEXECDIR "/" EPHY_PROFILE_MIGRATOR;
|
||||
#endif
|
||||
|
||||
g_spawn_sync (NULL, (char **)argv, envp, G_SPAWN_SEARCH_PATH,
|
||||
Reference in New Issue
Block a user