aboutsummaryrefslogtreecommitdiffstats
path: root/java
diff options
context:
space:
mode:
Diffstat (limited to 'java')
-rw-r--r--java/Makefile.in4
1 files changed, 3 insertions, 1 deletions
diff --git a/java/Makefile.in b/java/Makefile.in
index fd076c089ff..8cc2235b9f3 100644
--- a/java/Makefile.in
+++ b/java/Makefile.in
@@ -258,7 +258,8 @@ install_temp: $(CROSS_BINS) $(CROSS_LIBS) $(RESOURCE_FILES)
258 { hostname; date +%s; } > install_temp/assets/build_info 258 { hostname; date +%s; } > install_temp/assets/build_info
259# Produce the file index. 259# Produce the file index.
260 $(AM_V_SILENT) $(libsrc)/asset-directory-tool \ 260 $(AM_V_SILENT) $(libsrc)/asset-directory-tool \
261 install_temp/assets install_temp/assets/directory-tree 261 install_temp/assets install_temp/assets/directory-tree\
262 $(if $(ANDROID_SDK_8_OR_EARLIER),--api-8)
262# If the package targets Android 2.2, move compressable and 263# If the package targets Android 2.2, move compressable and
263# non-compressable assets to separate directories. 264# non-compressable assets to separate directories.
264 $(AM_V_SILENT) \ 265 $(AM_V_SILENT) \
@@ -266,6 +267,7 @@ install_temp: $(CROSS_BINS) $(CROSS_LIBS) $(RESOURCE_FILES)
266 echo "Moving large and gzipped files to separate directories...">&2;\ 267 echo "Moving large and gzipped files to separate directories...">&2;\
267 mkdir -p install_temp/assets_raw; \ 268 mkdir -p install_temp/assets_raw; \
268 cd install_temp/assets; \ 269 cd install_temp/assets; \
270 mv directory-tree ../assets_raw; \
269 find . \( -size +1536 -o -size 1536 \) \ 271 find . \( -size +1536 -o -size 1536 \) \
270 \( \! -name '*.gz' \) -type f > files.txt; \ 272 \( \! -name '*.gz' \) -type f > files.txt; \
271 tar cf ../assets_raw/largefiles.tar -T files.txt; \ 273 tar cf ../assets_raw/largefiles.tar -T files.txt; \