aboutsummaryrefslogtreecommitdiff
path: root/mesonbuild/compilers/compilers.py
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-05-26 22:49:50 -0400
committerEli Schwartz <eschwartz@archlinux.org>2022-05-31 17:49:29 -0400
commit38c00feb9d2004c05491f52d6ec40f2ed8467b4e (patch)
tree2ec0065cf2b143f8328cbdada94ff7f29840e363 /mesonbuild/compilers/compilers.py
parentdd2f1c4c57874a0efcd9f6d331985c408101c30d (diff)
downloadmeson-38c00feb9d2004c05491f52d6ec40f2ed8467b4e.zip
meson-38c00feb9d2004c05491f52d6ec40f2ed8467b4e.tar.gz
meson-38c00feb9d2004c05491f52d6ec40f2ed8467b4e.tar.bz2
relax target name restrictions to cater to internal use
We don't want to allow targets that conflict with: - our aliased meson-* targets for phony commands - any meson-*/ directories we create for internal purposes We do want to allow targets such as: - our own meson-*.X manpages There are a couple routes we could take. Using a better restriction, such as `meson-internal__*`, is trivially done for our aliased targets, but changing directory names is... awkward. We probably cannot do this, and doing the former but not the latter is not very useful. We could also carefully allow patterns we know we won't use, such as file extensions, but which the manpages need, which works for our directories and for many aliased targets, but run_target() is user-specified and can be anything. Use a hybrid approach to cover both use cases. We will now allow target names that fulfill *all* the following criteria: - it begins with "meson-" - it doesn't continue with "internal__" - it has a file extension
Diffstat (limited to 'mesonbuild/compilers/compilers.py')
0 files changed, 0 insertions, 0 deletions