[Scummvm-git-logs] scummvm master -> f0609ad96229ddf92f904459dfa7622c51b9951d
lephilousophe
noreply at scummvm.org
Sun Jun 2 08:09:00 UTC 2024
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
f0609ad962 ANDROID: Fix building from scratch
Commit: f0609ad96229ddf92f904459dfa7622c51b9951d
https://github.com/scummvm/scummvm/commit/f0609ad96229ddf92f904459dfa7622c51b9951d
Author: Le Philousophe (lephilousophe at users.noreply.github.com)
Date: 2024-06-02T10:08:12+02:00
Commit Message:
ANDROID: Fix building from scratch
Changed paths:
backends/platform/android/android.mk
diff --git a/backends/platform/android/android.mk b/backends/platform/android/android.mk
index 257ffe349a6..03d421016b8 100644
--- a/backends/platform/android/android.mk
+++ b/backends/platform/android/android.mk
@@ -18,11 +18,12 @@ DIST_FILES_HELP = $(PATH_DIST)/android-help.zip
$(PATH_BUILD):
$(MKDIR) $(PATH_BUILD)
-$(PATH_BUILD)/gradle/.timestamp: $(GRADLE_FILES)
+$(PATH_BUILD)/gradle/.timestamp: $(GRADLE_FILES) | $(PATH_BUILD)
+ $(MKDIR) $(PATH_BUILD)/gradle
$(CP) -r $(PATH_DIST)/gradle/. $(PATH_BUILD)/gradle/
touch "$@"
-$(PATH_BUILD)/gradlew: $(PATH_DIST)/gradlew
+$(PATH_BUILD)/gradlew: $(PATH_DIST)/gradlew | $(PATH_BUILD)
$(INSTALL) -c -m 755 $(PATH_DIST)/gradlew $(PATH_BUILD)
$(PATH_BUILD)/build.gradle: $(PATH_DIST)/build.gradle | $(PATH_BUILD)
More information about the Scummvm-git-logs
mailing list