From de2a9d54f1de55a28d5f667a4857af0fc1febc7e Mon Sep 17 00:00:00 2001 From: Benoit Pierre Date: Sun, 11 Aug 2024 15:44:34 +0200 Subject: [PATCH] make: reword comment --- make/android.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/make/android.mk b/make/android.mk index 40cc81468..c4018c677 100644 --- a/make/android.mk +++ b/make/android.mk @@ -35,8 +35,8 @@ update: all # APK version mkdir -p $(ANDROID_ASSETS)/module $(ANDROID_LIBS) echo $(VERSION) >$(ANDROID_ASSETS)/module/version.txt - # We need strip the version, or versioned - # libraries won't be included in the APK. + # We need to strip version numbers, as gradle will ignore + # versioned libraries and not include them in the APK. for src in $(INSTALL_DIR)/koreader/libs/*; do \ dst="$${src##*/}"; \ dst="$${dst%%.[0-9]*}"; \