aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorZhao Wei Liew <zhaoweiliew@gmail.com>2017-02-11 06:01:13 +0800
committerZhao Wei Liew <zhaoweiliew@gmail.com>2017-02-11 12:09:58 +0000
commitdee66450bb214aa7afa174f176c88a09df86d5ba (patch)
treec0499529e44e041a0399144f52b76569480e22b1
parent49d115a88ac1cd596391743dc389f44ab5338207 (diff)
downloadvendor_replicant-dee66450bb214aa7afa174f176c88a09df86d5ba.tar.gz
vendor_replicant-dee66450bb214aa7afa174f176c88a09df86d5ba.tar.bz2
vendor_replicant-dee66450bb214aa7afa174f176c88a09df86d5ba.zip
cm: bootanimation: Fail the build if mogrify is absent
We're no longer using convert, but mogrify. Change-Id: Ifd58527b49e5548dd94b35a8cf0ffa4ad5196804
-rw-r--r--bootanimation/Android.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/bootanimation/Android.mk b/bootanimation/Android.mk
index f7ba13ba..77547e31 100644
--- a/bootanimation/Android.mk
+++ b/bootanimation/Android.mk
@@ -1,5 +1,6 @@
#
# Copyright (C) 2016 The CyanogenMod Project
+# 2017 The LineageOS Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
@@ -28,7 +29,7 @@ $(TARGET_GENERATED_BOOTANIMATION):
ifeq ($(TARGET_BOOTANIMATION),)
TARGET_BOOTANIMATION := $(TARGET_GENERATED_BOOTANIMATION)
- ifeq ($(shell command -v convert),)
+ ifeq ($(shell command -v mogrify),)
$(info **********************************************)
$(info The boot animation could not be generated as)
$(info ImageMagick is not installed in your system.)