From 1e3c117978e971433270aa9aaf5fd4d8bae680e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guido=20G=C3=BCnther?= Date: Tue, 17 Nov 2020 10:55:12 +0100 Subject: [PATCH] data: Check desktop file in build dir It got moved in f6f9e3f039b8422199b947a7431fbb4b3b324c22 --- data/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/meson.build b/data/meson.build index 062f610..0ec922d 100644 --- a/data/meson.build +++ b/data/meson.build @@ -23,11 +23,11 @@ desktop_file = i18n.merge_file( desktop_utils = find_program('desktop-file-validate', required: false) if desktop_utils.found() test('Validate desktop file', desktop_utils, - args: [join_paths(meson.current_source_dir(), + args: [join_paths(meson.current_build_dir(), 'sm.puri.Calls.desktop') ]) test('Validate daemon desktop file', desktop_utils, - args: [join_paths(meson.current_source_dir(), + args: [join_paths(meson.current_build_dir(), 'sm.puri.Calls-daemon.desktop') ]) endif