Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix incorrect includes$(path) syntax in Android.mk #62

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

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