Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix make jobserver for runtime_tests and friends
Summary: Building `runtime_tests` was compiling a single file at a time, with `make[1]: warning: jobserver unavailable: using -j1. Add '+' to parent make rule.` appearing in the output. The [GNU make manual](https://www.gnu.org/software/make/manual/html_node/MAKE-Variable.html) says that to propagate jobserver information, `$(MAKE)` must appear directly in the recipe, but it won't be detected if the variable is referenced through a substitution like these rules do since D50516544. Adding an explicit `+` to each rule fixes it. Reviewed By: mpage Differential Revision: D52546490 fbshipit-source-id: bdd42641e884a14e82d463e03e0ccbfa90ca85a4
- Loading branch information