Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 019891c1 authored by Ying Wang's avatar Ying Wang Committed by Android Git Automerger
Browse files

am fc9cd4f5: Create an empty zip file if no dict file found.

* commit 'fc9cd4f5':
  Create an empty zip file if no dict file found.
parents 2747bec3 fc9cd4f5
Loading
Loading
Loading
Loading
+5 −2
Original line number Diff line number Diff line
@@ -1396,7 +1396,7 @@ endif # EMMA_INSTRUMENT=true
# Only for apps_only build.
#
ifdef TARGET_BUILD_APPS
PROGUARD_DICT_ZIP := $(PRODUCT_OUT)/proguard-dict-$(FILE_NAME_TAG).zip
PROGUARD_DICT_ZIP := $(PRODUCT_OUT)/$(TARGET_PRODUCT)-proguard-dict-$(FILE_NAME_TAG).zip
# the dependency will be set up later in build/core/main.mk.
$(PROGUARD_DICT_ZIP) :
	@echo "Packaging Proguard obfuscation dictionary files."
@@ -1404,7 +1404,10 @@ $(PROGUARD_DICT_ZIP) :
		if [ -n "$$dict_files" ]; then \
		  zip -q $@ $$dict_files; \
		else \
		  touch $@; \
		  touch $(dir $@)/dummy; \
		  (cd $(dir $@) && zip -q $(notdir $@) dummy); \
		  zip -qd $@ dummy; \
		  rm $(dir $@)/dummy; \
		fi

endif # TARGET_BUILD_APPS