xref: /openbmc/openbmc/poky/meta/recipes-gnome/epiphany/files/distributor.patch (revision 8460358c3d24c71d9d38fd126c745854a6301564)
1From 641c9d5fc0d9f16151a20a5df2f0b4059d1130a1 Mon Sep 17 00:00:00 2001
2From: Richard Purdie <richard.purdie@linuxfoundation.org>
3Date: Fri, 26 Feb 2021 10:17:52 +0000
4Subject: [PATCH] Don't encode the distro from /etc/os-release into the
5 binaries.
6
7Upstream-Status: Pending
8RP 2021/2/26
9---
10 meson.build | 1 +
11 1 file changed, 1 insertion(+)
12
13diff --git a/meson.build b/meson.build
14index 2691828..c466af6 100644
15--- a/meson.build
16+++ b/meson.build
17@@ -15,6 +15,7 @@ if r.returncode() == 0
18 else
19   distributor_name = 'GNOME Web'
20 endif
21+distributor_name = 'OpenEmbedded'
22
23 prefix = get_option('prefix')
24 datadir = join_paths(prefix, get_option('datadir'))
25