From: Twaik Yont <9674930+twaik@users.noreply.github.com> Remove `wine-debug.apk` from `EXTRA_TARGETS` so it is no longer built as part of the default `all` target. Building the APK requires first installing the Wine prefix into the Android project `assets` directory and copying native libraries into the `libs` directory, with additional preparation steps to adjust the project layout before packaging. This staging is required because `aapt` cannot package the needed filesystem layout through symlinks, so the Android project tree has to be populated explicitly before the final APK build step. Signed-off-by: Twaik Yont <9674930+twaik@users.noreply.github.com> --- dlls/wineandroid.drv/Makefile.in | 2 -- 1 file changed, 2 deletions(-) diff --git a/dlls/wineandroid.drv/Makefile.in b/dlls/wineandroid.drv/Makefile.in index 9a8be0ef90a..45152b16123 100644 --- a/dlls/wineandroid.drv/Makefile.in +++ b/dlls/wineandroid.drv/Makefile.in @@ -12,5 +12,3 @@ SOURCES = \ opengl.c \ window.c \ wine.svg - -EXTRA_TARGETS = wine-debug.apk -- GitLab https://gitlab.winehq.org/wine/wine/-/merge_requests/10354