mirror of
https://git.yoctoproject.org/poky
synced 2026-03-10 09:19:41 +01:00
Set our own distro string rather than using the value from /etc/os-release. (From OE-Core rev: 77f23ece471e8855bfd8be06951f21cabce25545) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
18 lines
485 B
Diff
18 lines
485 B
Diff
Don't encode the distro from /etc/os-release into the binaries.
|
|
|
|
Upstream-Status: Pending
|
|
RP 2021/2/26
|
|
|
|
Index: epiphany-3.38.2/meson.build
|
|
===================================================================
|
|
--- epiphany-3.38.2.orig/meson.build
|
|
+++ epiphany-3.38.2/meson.build
|
|
@@ -15,6 +15,7 @@ if r.returncode() == 0
|
|
else
|
|
distributor_name = 'GNOME Web'
|
|
endif
|
|
+distributor_name = 'OpenEmbedded'
|
|
|
|
prefix = get_option('prefix')
|
|
datadir = join_paths(prefix, get_option('datadir'))
|