diff options
author | Loïc Blot <nerzhul@users.noreply.github.com> | 2018-06-11 19:18:34 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-11 19:18:34 +0200 |
commit | 956a0ba180883eb31f504b27577073a949fe7b05 (patch) | |
tree | f227e471af7528130490904145df06592abbc050 /build/android/Makefile | |
parent | 409d04324f0a81eaa78ff9161b4f3593d89151c5 (diff) | |
download | minetest-956a0ba180883eb31f504b27577073a949fe7b05.tar.gz minetest-956a0ba180883eb31f504b27577073a949fe7b05.tar.bz2 minetest-956a0ba180883eb31f504b27577073a949fe7b05.zip |
Android: fix assets cleanup
Diffstat (limited to 'build/android/Makefile')
-rw-r--r-- | build/android/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/android/Makefile b/build/android/Makefile index 1d6df6e7d..9d3c81810 100644 --- a/build/android/Makefile +++ b/build/android/Makefile @@ -771,7 +771,7 @@ assets : $(ASSETS_TIMESTAMP) fi clean_assets : - @$(RM) -r assets + @$(RM) -r ${APP_ROOT}/assets apk: local.properties assets $(ICONV_LIB) $(IRRLICHT_LIB) $(CURL_LIB) $(GMP_LIB) $(LEVELDB_TARGET) \ $(OPENAL_LIB) $(OGG_LIB) prep_srcdir $(ANDR_ROOT)/jni/src/android_version.h \ |