summaryrefslogtreecommitdiffstats
path: root/meta/recipes-devtools/meson/meson/validate-cpu.patch
diff options
context:
space:
mode:
Diffstat (limited to 'meta/recipes-devtools/meson/meson/validate-cpu.patch')
-rw-r--r--meta/recipes-devtools/meson/meson/validate-cpu.patch4
1 files changed, 2 insertions, 2 deletions
diff --git a/meta/recipes-devtools/meson/meson/validate-cpu.patch b/meta/recipes-devtools/meson/meson/validate-cpu.patch
index 8bdb204ab0..e7dad00d47 100644
--- a/meta/recipes-devtools/meson/meson/validate-cpu.patch
+++ b/meta/recipes-devtools/meson/meson/validate-cpu.patch
@@ -100,7 +100,7 @@ index 091d92dc..67177c1f 100644
100 100
101 if trial not in known_cpu_families: 101 if trial not in known_cpu_families:
102- mlog.warning('Unknown CPU family %s, please report this at https://github.com/mesonbuild/meson/issues/new' % trial) 102- mlog.warning('Unknown CPU family %s, please report this at https://github.com/mesonbuild/meson/issues/new' % trial)
103+ raise EnvironmentException('Unknown CPU family %s, please report this at https://github.com/mesonbuild/meson/issues/new' % trial) 103+ raise EnvironmentException('Unknown CPU family %s, see https://wiki.yoctoproject.org/wiki/Meson/UnknownCPU for directions.' % trial)
104 104
105 return trial 105 return trial
106 106
@@ -109,7 +109,7 @@ index 091d92dc..67177c1f 100644
109 109
110 if entry == 'cpu_family' and res not in known_cpu_families: 110 if entry == 'cpu_family' and res not in known_cpu_families:
111- mlog.warning('Unknown CPU family %s, please report this at https://github.com/mesonbuild/meson/issues/new' % value) 111- mlog.warning('Unknown CPU family %s, please report this at https://github.com/mesonbuild/meson/issues/new' % value)
112+ raise EnvironmentException('Unknown CPU family %s, please report this at https://github.com/mesonbuild/meson/issues/new' % value) 112+ raise EnvironmentException('Unknown CPU family %s, see https://wiki.yoctoproject.org/wiki/Meson/UnknownCPU for directions.' % value)
113 113
114 if self.ok_type(res): 114 if self.ok_type(res):
115 self.config[s][entry] = res 115 self.config[s][entry] = res