From 58a64d05a5f5475a0d6ae591187dc0c7f3144935 Mon Sep 17 00:00:00 2001 From: heitbaum Date: Sun, 31 Oct 2021 15:26:48 +1100 Subject: [PATCH] xorg-intel-gpu-tools: upstream fix from meson 0.60.0 build --- ...org-intel-gpu-tools-1-26-meson-build.patch | 37 +++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 packages/debug/xorg-intel-gpu-tools/patches/xorg-intel-gpu-tools-1-26-meson-build.patch diff --git a/packages/debug/xorg-intel-gpu-tools/patches/xorg-intel-gpu-tools-1-26-meson-build.patch b/packages/debug/xorg-intel-gpu-tools/patches/xorg-intel-gpu-tools-1-26-meson-build.patch new file mode 100644 index 0000000000..9a464d6dea --- /dev/null +++ b/packages/debug/xorg-intel-gpu-tools/patches/xorg-intel-gpu-tools-1-26-meson-build.patch @@ -0,0 +1,37 @@ +From patchwork Thu Oct 28 08:05:31 2021 +Content-Type: text/plain; charset="utf-8" +MIME-Version: 1.0 +Content-Transfer-Encoding: 7bit +Subject: [i-g-t,1/1] lib/meson.build: Fix underscorify call +From: Petri Latvala +X-Patchwork-Id: 461649 +Message-Id: <20211028080531.8223-1-petri.latvala@intel.com> +To: igt-dev@lists.freedesktop.org +Cc: Petri Latvala , + Arkadiusz Hiler +Date: Thu, 28 Oct 2021 11:05:31 +0300 + +f.underscorify() is correct, f.underscorify(f) is an error that later +meson versions don't like at all. + +Closes: https://gitlab.freedesktop.org/drm/igt-gpu-tools/-/issues/107 +Fixes: 588555f77909 ("lib/i915: Extract helpers for determining scheduler capabilities") +Cc: Arkadiusz Hiler +Signed-off-by: Petri Latvala +--- + lib/meson.build | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/lib/meson.build b/lib/meson.build +index c3080fc8..297b0ad2 100644 +--- a/lib/meson.build ++++ b/lib/meson.build +@@ -155,7 +155,7 @@ lib_version = vcs_tag(input : 'version.h.in', output : 'version.h', + + lib_intermediates = [] + foreach f: lib_sources +- name = f.underscorify(f) ++ name = f.underscorify() + lib = static_library('igt-' + name, + [ f, lib_version ], + include_directories: inc,