Skip to content

Commit

Permalink
build/core: Create means of ignoring subdir layer for packages.
Browse files Browse the repository at this point in the history
  An external resource package that acts as a secondary framework
  resource should be presented in system/framework similarily to
  the framework-res module.

Change-Id: Ie4110a184cd7262035110a6a04bb7ea91e7a42b0
  • Loading branch information
Adnan Begovic authored and Flinny committed Jul 15, 2015
1 parent 0b0fb24 commit 6ae4962
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/base_rules.mk
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ ifneq (true,$(LOCAL_UNINSTALLABLE_MODULE))
# Apk and its attachments reside in its own subdir.
ifeq ($(LOCAL_MODULE_CLASS),APPS)
# framework-res.apk doesn't like the additional layer.
ifneq ($(LOCAL_NO_STANDARD_LIBRARIES),true)
ifeq ($(filter true,$(LOCAL_NO_STANDARD_LIBRARIES) $(LOCAL_IGNORE_SUBDIR)),)
my_module_path := $(my_module_path)/$(LOCAL_MODULE)
endif
endif
Expand Down

0 comments on commit 6ae4962

Please sign in to comment.