Fix sdk_font build warning.

Commit f0adf87d42 did not fix the warning
properly.

Change-Id: I536aeb4bce4dab63c0f35f32b76653d5b07a8ff0
This commit is contained in:
Deepanshu Gupta 2014-09-04 18:59:05 -07:00
parent 52626d2a7b
commit 56355bac72
1 changed files with 2 additions and 2 deletions

View File

@ -50,9 +50,9 @@ SDK_FONT_DEPS := $(sdk_fonts_device) $(sdk_font_config)
# $2 Source font path
define sdk-extra-font-rule
fontfullname := $$(SDK_FONT_TEMP)/$1
ifeq ($$(filter $(fontfullname),$$(sdk_fonts_device)),)
ifeq ($$(filter $$(fontfullname),$$(sdk_fonts_device)),)
SDK_FONT_DEPS += $$(fontfullname)
$$(fontfullname): $2 $(sdk_font_rename_script)
$$(fontfullname): $2 $$(sdk_font_rename_script)
$$(hide) mkdir -p $$(dir $$@)
$$(hide) $$(call sdk_rename_font,$$<,$$@)
endif