forked from openkylin/platform_build
Merge "build: Add support for defining products in /product"
am: acb8a7c1f8
* commit 'acb8a7c1f8cacaf136edba1a25d64467d352a432':
build: Add support for defining products in /product
This commit is contained in:
commit
881ec090c4
|
@ -30,6 +30,7 @@
|
|||
define _find-android-products-files
|
||||
$(sort $(shell test -d device && find device -maxdepth 6 -name AndroidProducts.mk)) \
|
||||
$(sort $(shell test -d vendor && find vendor -maxdepth 6 -name AndroidProducts.mk)) \
|
||||
$(sort $(shell test -d product && find product -maxdepth 6 -name AndroidProducts.mk)) \
|
||||
$(SRC_TARGET_DIR)/product/AndroidProducts.mk
|
||||
endef
|
||||
|
||||
|
|
|
@ -1541,7 +1541,8 @@ fi
|
|||
|
||||
# Execute the contents of any vendorsetup.sh files we can find.
|
||||
for f in `test -d device && find -L device -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null | sort` \
|
||||
`test -d vendor && find -L vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null | sort`
|
||||
`test -d vendor && find -L vendor -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null | sort` \
|
||||
`test -d product && find -L product -maxdepth 4 -name 'vendorsetup.sh' 2> /dev/null | sort`
|
||||
do
|
||||
echo "including $f"
|
||||
. $f
|
||||
|
|
Loading…
Reference in New Issue