Skip to content

Commit

Permalink
Android: Fix extra files being copied to the APK
Browse files Browse the repository at this point in the history
dcb91cf hacked around the biggest issue
this caused, but wasted a lot of CPU time and disk space  It also still
included a lot of other unwanted files.  This removes all of `doc/` except
the license, and also removes the server list.
  • Loading branch information
ShadowNinja authored and Sapier committed Dec 20, 2015
1 parent f192a5b commit b4eb614
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions build/android/Makefile
Expand Up @@ -739,9 +739,9 @@ assets : $(ASSETS_TIMESTAMP)
cp ${ROOT}/../../minetest.conf.example ${ROOT}/assets/Minetest; \
cp ${ROOT}/../../README.txt ${ROOT}/assets/Minetest; \
cp -r ${ROOT}/../../builtin ${ROOT}/assets/Minetest; \
cp -r ${ROOT}/../../client ${ROOT}/assets/Minetest; \
cp -r ${ROOT}/../../doc ${ROOT}/assets/Minetest; \
rm -rf ${ROOT}/assets/Minetest/doc/html; \
mkdir ${ROOT}/assets/Minetest/client; \
cp -r ${ROOT}/../../client/shaders ${ROOT}/assets/Minetest/client; \
cp ${ROOT}/../../doc/lgpl-2.1.txt ${ROOT}/assets/Minetest/LICENSE.txt; \
mkdir ${ROOT}/assets/Minetest/fonts; \
cp -r ${ROOT}/../../fonts/*.ttf ${ROOT}/assets/Minetest/fonts/; \
mkdir ${ROOT}/assets/Minetest/games; \
Expand Down

0 comments on commit b4eb614

Please sign in to comment.