forked from openkylin/platform_build
Merge "Follow symlinks when using find for assets"
am: 4c4c06016b
* commit '4c4c06016bfe62fde1aaf2fff33d6f6c55f78b89':
Follow symlinks when using find for assets
Change-Id: I62fc48be86bbbac6e0d2f09e398a4922fe21668a
This commit is contained in:
commit
505f1eaaa9
|
@ -402,7 +402,7 @@ endef
|
|||
|
||||
define find-subdir-assets
|
||||
$(sort $(if $(1),$(patsubst ./%,%, \
|
||||
$(shell if [ -d $(1) ] ; then cd $(1) ; find ./ -not -name '.*' -and -type f -and -not -type l ; fi)), \
|
||||
$(shell if [ -d $(1) ] ; then cd $(1) ; find -L ./ -not -name '.*' -and -type f ; fi)), \
|
||||
$(warning Empty argument supplied to find-subdir-assets) \
|
||||
))
|
||||
endef
|
||||
|
|
Loading…
Reference in New Issue