March 30, 2026
5:52 a.m.
`configure.ac` adds our custom rules near the beginning of the generated makefile, right after the automake variables and the initial ``` all: @echo 'Wine build complete.' ``` block. So we could make `wine-debug.apk` the first prerequisite of all and mark it `.NOTPARALLEL`. That would keep it as part of the normal build rather than a configure-time environment check, but still make it run very early, or at least as early as possible, and without interleaving its output with unrelated parallel jobs. In practice that should still give the same fail-early effect, without adding extra dummy validation code. -- https://gitlab.winehq.org/wine/wine/-/merge_requests/10438#note_134348