diff options
author | Cem Keylan <cem@ckyln.com> | 2021-09-09 20:58:27 +0300 |
---|---|---|
committer | Cem Keylan <cem@ckyln.com> | 2021-09-09 20:58:27 +0300 |
commit | dd92262c0d556b791930c465ec6ea6bdd32fdac8 (patch) | |
tree | fceadaa806c018a1fee9366769d82afdec9a4366 /extra/meson/files/cl-meson | |
parent | 650c49a8f24406b4085ce7e75ae629fdfc2ec293 (diff) | |
download | repository-dd92262c0d556b791930c465ec6ea6bdd32fdac8.tar.gz |
meson: rant
Diffstat (limited to 'extra/meson/files/cl-meson')
-rwxr-xr-x | extra/meson/files/cl-meson | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/extra/meson/files/cl-meson b/extra/meson/files/cl-meson index e6c541c2..d822d81a 100755 --- a/extra/meson/files/cl-meson +++ b/extra/meson/files/cl-meson @@ -3,6 +3,13 @@ # any downloads from subproject wrappers. We want the builds to be as # reproducible as possible, and we want to be adding features most of the # time instead of removing them. +# +# Unfortunately, there are lots of people who lack the ability to read the +# documentation of meson (which is really simple by the way), and declare +# features as 'combo' type instead of 'feature' type. This means that you +# shouldn't rely entirely on the '--auto-features=disabled', because those +# people declare their features as string lists. +# https://mesonbuild.com/Build-options.html#features exec meson setup \ --prefix=/usr \ @@ -10,6 +17,7 @@ exec meson setup \ --localstatedir=/var \ --libexecdir=lib \ --sbindir=bin \ + --mandir=share/man \ --buildtype=release \ --auto-features=disabled \ --wrap-mode=nodownload \ |