am c09cc904
: am dffd4058
: Merge "build speedup: Do not use shell \'find\' function to look for NOTICE files."
* commit 'c09cc904f183907111de57581d55c181df8ef47f': build speedup: Do not use shell 'find' function to look for NOTICE files.
This commit is contained in:
commit
dc620647ef
1 changed files with 2 additions and 2 deletions
|
@ -2,9 +2,9 @@
|
|||
## Track NOTICE files
|
||||
###########################################################
|
||||
|
||||
notice_file:=$(shell find $(LOCAL_PATH) -maxdepth 1 -name NOTICE)
|
||||
notice_file:=$(strip $(wildcard $(LOCAL_PATH)/NOTICE))
|
||||
|
||||
ifneq ($(strip $(notice_file)),)
|
||||
ifdef notice_file
|
||||
|
||||
# This relies on the name of the directory in PRODUCT_OUT matching where
|
||||
# it's installed on the target - i.e. system, data, etc. This does
|
||||
|
|
Loading…
Reference in a new issue