From 77f9ad0b1b39d68efd5966392e5025230bb450e1 Mon Sep 17 00:00:00 2001 From: John Turner Date: Tue, 9 Sep 2025 21:11:51 -0400 Subject: fix meson build Define all sources at the top level meson.build so that they get installed in the correct subdir. --- meson.build | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'meson.build') diff --git a/meson.build b/meson.build index 41ebb91..7c9ab84 100644 --- a/meson.build +++ b/meson.build @@ -4,9 +4,13 @@ python = import('python').find_installation( modules: ['pygments', 'zstandard', 'aiohttp', 'bozo4'], ) -sources = [] - -subdir('pypaste') +sources = files( + 'pypaste/__init__.py', + 'pypaste/__main__.py', + 'pypaste/s3/__init__.py', + 'pypaste/s3/bucket.py', + 'pypaste/sqlite/__init__.py', +) python.install_sources(sources, preserve_path: true) -- cgit v1.2.3