diff options
author | Eli Schwartz <eschwartz@archlinux.org> | 2021-10-25 17:28:09 -0400 |
---|---|---|
committer | Eli Schwartz <eschwartz@archlinux.org> | 2021-10-25 20:22:45 -0400 |
commit | 67e841720c2f8e05ac6c617566c1272a53b47510 (patch) | |
tree | f0338d179124f973327961711cf466bb5a8fcbb3 | |
parent | 4840c86ec94b0d34a443d38ac771f1e7fe000c59 (diff) | |
download | meson-67e841720c2f8e05ac6c617566c1272a53b47510.zip meson-67e841720c2f8e05ac6c617566c1272a53b47510.tar.gz meson-67e841720c2f8e05ac6c617566c1272a53b47510.tar.bz2 |
make sure the devenv powershell script is actually distributed
It's not a python file, so it will never end up in the installed package
unless we mark it as package_data. This causes problems for people using
non-git checkouts.
Fixes #9435
Closes #9443
-rw-r--r-- | setup.cfg | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -47,6 +47,9 @@ typing = mypy typing_extensions; python_version <"3.8" +[options.package_data] +mesonbuild.scripts = cmd_or_ps.ps1 + [options.packages.find] include = mesonbuild, mesonbuild.* exclude = *.data |