Commit 2e0d407
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 1d0ddfb commit 2e0d407
1 file changed
Lines changed: 1 addition & 1 deletion
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
169 | 169 | | |
170 | 170 | | |
171 | 171 | | |
172 | | - | |
| 172 | + | |
173 | 173 | | |
174 | 174 | | |
175 | 175 | | |
| |||
0 commit comments