fix update-makefiles.sh to not need Android.mk

am: 15e1558a04

Change-Id: Iec4f362abc0e0b1f1798e93baf457d9ce0cf3386
This commit is contained in:
Iliyan Malchev
2016-09-18 03:43:11 +00:00
committed by android-build-merger

View File

@@ -6,7 +6,7 @@ if [ ! -d hardware/interfaces ] ; then
fi
packages=$(pushd hardware/interfaces > /dev/null; \
find . -type f -name Android.mk -exec dirname {} \; | \
find . -type f -name \*.hal -exec dirname {} \; | sort -u | \
cut -c3- | \
awk -F'/' \
'{printf("android.hardware"); for(i=1;i<NF;i++){printf(".%s", $i);}; printf("@%s\n", $NF);}'; \