From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga17.intel.com (mga17.intel.com [192.55.52.151]) by gabe.freedesktop.org (Postfix) with ESMTPS id CCC7610E281 for ; Wed, 22 Mar 2023 06:50:10 +0000 (UTC) Received: from linux.intel.com (maurocar-mobl2.ger.corp.intel.com [10.252.26.250]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by linux.intel.com (Postfix) with ESMTPS id 91E825805CB for ; Tue, 21 Mar 2023 23:50:09 -0700 (PDT) Received: from maurocar by linux.intel.com with local (Exim 4.96) (envelope-from ) id 1pesIR-007NXf-1R for igt-dev@lists.freedesktop.org; Wed, 22 Mar 2023 07:50:07 +0100 From: Mauro Carvalho Chehab To: igt-dev@lists.freedesktop.org Date: Wed, 22 Mar 2023 07:50:02 +0100 Message-Id: <20230322065003.1758611-8-mauro.chehab@linux.intel.com> In-Reply-To: <20230322065003.1758611-1-mauro.chehab@linux.intel.com> References: <20230322065003.1758611-1-mauro.chehab@linux.intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [igt-dev] [PATCH i-g-t v4 7/8] testplan/meson.build: use join_paths() List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: igt-dev-bounces@lists.freedesktop.org Sender: "igt-dev" List-ID: From: Mauro Carvalho Chehab Use the more portable join_paths() macro. Signed-off-by: Mauro Carvalho Chehab --- docs/testplan/meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/testplan/meson.build b/docs/testplan/meson.build index 9e7ae7a04753..10ea4be9a3f5 100644 --- a/docs/testplan/meson.build +++ b/docs/testplan/meson.build @@ -4,9 +4,9 @@ sphinx = find_program('sphinx-build', required: build_sphinx) rst2html = find_program('rst2html-3', 'rst2html', required : false) rst2pdf = find_program('rst2pdf', required: false) -stylesheet = meson.current_source_dir() + '/testplan.css' +stylesheet = join_paths(meson.current_source_dir(), 'testplan.css') -xe_test_config = source_root + '/tests/xe/xe_test_config.json' +xe_test_config = join_paths(source_root, 'tests', 'xe', 'xe_test_config.json') if not build_tests test_executables = [] -- 2.39.2