Age | Commit message (Collapse) | Author | Files | Lines |
|
|
|
Since we already have that list available.
|
|
This allows the NINJA environment variable to support all the Windows special
cases, especially allowing an absolute path without extension.
Based on a patch by Yonggang Luo.
Fixes: #7659
Suggested-by: Nirbheek Chauhan <nirbheek@centricular.com>
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|
|
It makes the code cleaner to have 3 separate dictionaries for
packagename, dependency and programs.
|
|
Since we parse buildoptions.json to pass options, we end up passing
-Dbuildtype and also -Doptimization and -Ddebug which triggers the
warning:
WARNING: Recommend using either -Dbuildtype or -Doptimization + -Ddebug [...]
Filter out buildtype. It is redundant.
|
|
Otherwise the location is not discoverable without reading online
documentation.
|
|
It is not always needed to test generated tarballs, for example when
they are generated by CI that already does its own testing.
|
|
|
|
|
|
Closes https://github.com/mesonbuild/meson/issues/1976
|
|
Debian's lintian checker complaints when upstream tarballs contain an
.hgtags file.
This excludes ".hg[a-z]*". This is mostly consistent with the git
handling in del_gitfiles() which deletes .git*. hg archive --help shows
an example of -X ".hg*". However, instead of ".hg*", I have used
".hg[a-z]*" to keep the automatically added hg_archival.txt. This file
may be useful to link the tarball to the Mercurial revision for either
manual inspection or in case any code interprets it for a --version or
similar.
This also excludes .hgignore and other things like .hgflow, which seems
desirable.
Fixes #6575
|
|
|
|
|
|
|
|
Source of patch:
http://lists.busybox.net/pipermail/buildroot/2019-October/262990.html
http://code.bulix.org/gdxcu4-914360
Fixes https://github.com/mesonbuild/meson/issues/6012
|
|
It was not obvious that 'meson dist' must be run from build directory.
|
|
Fixes https://github.com/mesonbuild/meson/issues/5732
|
|
|
|
|