blob: cb930b4c85e496864267fce4b419a4cb79cd8728 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
From 47db432ad98d74ab61bdb0b1ff07fe0e17761020 Mon Sep 17 00:00:00 2001
From: Richard Purdie <richard.purdie@linuxfoundation.org>
Date: Fri, 26 Feb 2021 10:17:52 +0000
Subject: [PATCH] Don't encode the distro from /etc/os-release into the
binaries.
Upstream-Status: Pending
RP 2021/2/26
---
meson.build | 1 +
1 file changed, 1 insertion(+)
diff --git a/meson.build b/meson.build
index 3c08643..0f465af 100644
--- a/meson.build
+++ b/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'))
|