Merge "Follow symlinks when using find for assets"

This commit is contained in:
Shinichiro Hamaji
2016-05-13 05:20:05 +00:00
committed by Gerrit Code Review

View File

@@ -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