- 264 license table entries with exact download URLs (224/264 resolved) - Complete sources/ directory with all BitBake recipes - Build configuration: tqma6ul-multi-mba6ulx, spaetzle (musl) - Full traceability for Softwarefreigabeantrag - GCC 13.4.0, Linux 6.6.102, U-Boot 2023.04, musl 1.2.4 - License distribution: GPL-2.0 (24), MIT (23), GPL-2.0+ (18), BSD-3 (16)
33 lines
1.1 KiB
Diff
33 lines
1.1 KiB
Diff
From b38a4ceaeec05efb1b822d52c43590e7fd518113 Mon Sep 17 00:00:00 2001
|
|
From: Richard Purdie <richard.purdie@linuxfoundation.org>
|
|
Date: Thu, 25 Feb 2021 14:52:32 +0000
|
|
Subject: [PATCH] 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.
|
|
|
|
Upstream-Status: Pending
|
|
RP 2021/2/25
|
|
---
|
|
lib/ephy-profile-utils.c | 4 ++--
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
|
|
|
diff --git a/lib/ephy-profile-utils.c b/lib/ephy-profile-utils.c
|
|
index a2f6181..5218077 100644
|
|
--- a/lib/ephy-profile-utils.c
|
|
+++ b/lib/ephy-profile-utils.c
|
|
@@ -130,10 +130,10 @@ ephy_profile_utils_do_migration (const char *profile_directory,
|
|
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,
|