Age | Commit message (Collapse) | Author | Files | Lines |
|
The check for if the project supports the -j flag was needlessly
complex. We support two types of project:
- waf, always supports -j
- make, if GNU, supports -j
We never checked waf, and the make check assumed that the entire
command, rather than just the last component, was "make". It also
neglects "gmake".
Since any possible build command *may* support -j, always run the
--version check. Detect either build command in the output.
|
|
It doesn't matter whether it is make or not, because make, too, supports
setting it via the env. This reduces the use of special cases in the
code.
|
|
|
|
Fixes: #7638
|
|
|
|
performed by running "pyupgrade --py36-plus" and committing the results
|
|
Write output of 'make' and 'make install' into log files as well when
not verbose.
|
|
|
|
|
|
This adds an experimental meson module to build projects with other
build systems.
Closes: #4316
|