Skip to content

Commit

Permalink
cm: bootanimation: Fail the build if mogrify is absent
Browse files Browse the repository at this point in the history
We're no longer using convert, but mogrify.

Change-Id: Ifd58527b49e5548dd94b35a8cf0ffa4ad5196804
  • Loading branch information
zwliew committed Feb 10, 2017
1 parent efe4823 commit d0850b3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion bootanimation/Android.mk
Original file line number Diff line number Diff line change
@@ -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.
Expand Down Expand Up @@ -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.)
Expand Down

0 comments on commit d0850b3

Please sign in to comment.