Skip to content

Conversation

@noobneo
Copy link

@noobneo noobneo commented Mar 5, 2025

Fix incorrect include syntax in Android.mk

Problem:

  • The Android build script in platform/java/Android.mk had a typo: includes$(path) instead of include $(path).
  • This caused ndk-build to fail, preventing successful compilation of MuPDF for Android.

Fix Implemented:

  • Corrected the syntax from includes$(path)include $(path).
  • Ensured ndk-build correctly includes dependencies.

Impact:

  • Fixes Android build errors.
  • No changes to functionality—only a build script fix.

Testing:

  • Successfully built MuPDF for Android using ndk-build.
  • Verified that all required dependencies are included correctly.

Fixes a syntax issue in platform/java/Android.mk, where includes$(path) was incorrectly used instead of include $(path).
The incorrect syntax (includes$(path)) caused the build system to fail to include necessary files, leading to ndk-build errors.
This prevented successful compilation of MuPDF for Android.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant