summaryrefslogtreecommitdiff
path: root/src/portal
diff options
context:
space:
mode:
Diffstat (limited to 'src/portal')
-rw-r--r--src/portal/cpy/setup.py2
-rw-r--r--src/portal/meson.build2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/portal/cpy/setup.py b/src/portal/cpy/setup.py
index 1a3e39c..7267bff 100644
--- a/src/portal/cpy/setup.py
+++ b/src/portal/cpy/setup.py
@@ -3,4 +3,4 @@ from Cython.Build import cythonize
from Cython.Compiler import Options
Options.embed = True
alabaster_inc = "../../../subprojects/libalabaster/include"
-cythonize([Extension("portal", ["portal.pyx"], include_dirs=[alabaster_inc], extra_link_args=[])], language_level=3)
+cythonize([Extension("portal", ["./portal.pyx"], include_dirs=[alabaster_inc], extra_link_args=[])], language_level=3)
diff --git a/src/portal/meson.build b/src/portal/meson.build
index 4e5ff56..d3904ea 100644
--- a/src/portal/meson.build
+++ b/src/portal/meson.build
@@ -8,7 +8,7 @@ portal_deps = []
portal_args = ['-DCAMU_HAVE_PORTAL']
cpy_dir = join_paths(meson.current_source_dir(), 'cpy')
-run_command(join_paths(cpy_dir, 'build.sh'), cpy_dir, check: false)
+run_command('sh', join_paths(cpy_dir, 'build.sh'), cpy_dir, check: false)
python3_embed = import('python').find_installation('python3.12').dependency(embed: true)
portal_deps += [python3_embed]