diff options
author | John Turner <jturner.usa@gmail.com> | 2025-09-05 19:52:23 -0400 |
---|---|---|
committer | John Turner <jturner.usa@gmail.com> | 2025-09-05 19:52:23 -0400 |
commit | 8c4cdafbb7c1308130f1cf1369dea981f697e157 (patch) | |
tree | a55a46a91e291545eea151f37424d160dad8ee0b | |
parent | 429208a700e5c2618d1fe6e09506220a15364f81 (diff) | |
download | pypaste-8c4cdafbb7c1308130f1cf1369dea981f697e157.tar.gz |
preserve path when installing py source files
-rw-r--r-- | meson.build | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meson.build b/meson.build index 97b9003..d00ba93 100644 --- a/meson.build +++ b/meson.build @@ -6,4 +6,4 @@ python = import('python').find_installation( sources = files('pypaste/__main__.py', 'pypaste/s3.py') -python.install_sources(sources) +python.install_sources(sources, preserve_path: true) |