Commit 862d29e
committed
fix(Makefile): use $(MAKE) for recursive build in build_nc_theming_app
Plain 'make build_css' inside the recipe is the wrong form for a
recursive build: it doesn't inherit the jobserver from the parent make
invocation, so when the Makefile is driven with 'make -j' (or from a
parent build that already holds jobserver tokens) the inner make
either prints 'warning: jobserver unavailable' or silently loses
parallel scheduling.
Replace it with $(MAKE), which GNU Make documents as the canonical
form for recursive invocations — it propagates MAKEFLAGS, jobserver
tokens, and triggers the recursive-make detection that prints
'make[1]: Entering directory ...' on entry.
Caught by GitHub Copilot in PR 109 review:
#109 (comment)1 parent 8835e12 commit 862d29e
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
175 | 175 | | |
176 | 176 | | |
177 | 177 | | |
178 | | - | |
| 178 | + | |
179 | 179 | | |
180 | 180 | | |
181 | 181 | | |
| |||
0 commit comments