From d2bf7327bbff5437e27d3fc842e44c1d1b70d1f9 Mon Sep 17 00:00:00 2001 From: "Christopher N. Hesse" Date: Sun, 5 Feb 2017 21:19:25 +0100 Subject: [PATCH] bootanimation: Use mogrify to convert images in place Fixes bootanimation generation for Darwin/BSD. Change-Id: Id9e38bcb9db7b550f22bda1250dbb515599e8f93 (cherry picked from commit 70658805a6ddbecd55877fafe4fba8b2efd83f74) --- bootanimation/generate-bootanimation.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bootanimation/generate-bootanimation.sh b/bootanimation/generate-bootanimation.sh index 98be46b6..cab7be8d 100755 --- a/bootanimation/generate-bootanimation.sh +++ b/bootanimation/generate-bootanimation.sh @@ -26,7 +26,8 @@ for part_cnt in 0 1 2 3 4 do mkdir -p $ANDROID_PRODUCT_OUT/obj/BOOTANIMATION/bootanimation/part$part_cnt done -tar xfp "vendor/cm/bootanimation/bootanimation.tar" --to-command="convert - -resize '$RESOLUTION' -colors 250 \"png8:$OUT/bootanimation/\$TAR_FILENAME\"" +tar xfp "vendor/cm/bootanimation/bootanimation.tar" -C "$OUT/bootanimation/" +mogrify -resize $RESOLUTION -colors 250 "$OUT/bootanimation/"*"/"*".png" # Create desc.txt echo "$IMAGESCALEWIDTH $IMAGESCALEHEIGHT" 60 > "$OUT/bootanimation/desc.txt"