From ded8effa210a9444c09ca1c581c06a0d4a9389e8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20Genov=C3=A9s?= Date: Tue, 29 Oct 2019 12:11:21 +0100 Subject: [PATCH] fix pythondir (-> string) --- meson.build | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/meson.build b/meson.build index 097157a..7023d73 100644 --- a/meson.build +++ b/meson.build @@ -43,7 +43,7 @@ find_program('update-desktop-database', required: false) gettext_package = meson.project_name() localedir = get_option('prefix') / get_option('localedir') -pythondir = get_option('prefix') / python.sysconfig_path('purelib') +pythondir = join_paths(get_option('prefix'), python.sysconfig_path('purelib')) datadir = get_option('prefix') / get_option('datadir') bindir = join_paths(get_option('prefix'), get_option('bindir')) pkgdatadir = datadir / meson.project_name() @@ -64,7 +64,7 @@ subdir('po') install_subdir( 'uberwriter', - install_dir: python3 + install_dir: pythondir ) message('Preparing init file')