diff options
author | Simon McVittie <smcv@debian.org> | 2020-04-02 09:18:55 +0100 |
---|---|---|
committer | Simon McVittie <smcv@debian.org> | 2020-04-02 09:18:55 +0100 |
commit | 9df7f0197d890307d80618736d4dd2d3a54a38de (patch) | |
tree | 8a97cda86025cd70285943916600038fc4ed4f14 /meson.build | |
parent | f169d23cdb0d8d851def16df0dc9583c5a0b69d5 (diff) | |
download | gtk+-9df7f0197d890307d80618736d4dd2d3a54a38de.tar.gz |
supp: Use a single suppressions file for lib, lib64 and multiarch
In addition to the traditional library directory lib and the 64-bit
multilib directory lib64, this will cover Debian-style multiarch
(lib/x86_64-linux-gnu etc.), Arch Linux 32-bit (lib32), x32 and
various others.
Signed-off-by: Simon McVittie <smcv@debian.org>
Diffstat (limited to 'meson.build')
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 92405f6a42..7eee560a6d 100644 --- a/meson.build +++ b/meson.build @@ -803,7 +803,7 @@ meson.add_install_script('build-aux/meson/post-install.py', if host_machine.system() != 'windows' # Install Valgrind suppression files (except on Windows, # as Valgrind is currently not supported on Windows) - install_data('gtk.supp', 'gtk64.supp', + install_data('gtk.supp', install_dir : join_paths(gtk_datadir, 'gtk-4.0', 'valgrind')) endif |