summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Schneider <asn@cryptomilk.org>2020-05-23 15:58:43 +0200
committerAndreas Schneider <asn@cryptomilk.org>2020-05-23 16:00:38 +0200
commit4ae6048e3f735358196caeea4b20fc529b1e25d1 (patch)
tree96228103ef0f2f9f5e2e75ccbc7e97b9e13090f1
parent8426f8236d88536502a4770caaa4a63a99900888 (diff)
extract_utils: Fix vendor Android.bp creation with subdirectory
error: vendor/samsung/beyond0lte/Android.bp:37:9: unrecognized property "sub_dir" Change-Id: I23becda0345f41d2cb1462e74b66a787e9ad4c96
-rw-r--r--extract_utils.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/extract_utils.sh b/extract_utils.sh
index 06337d6..7b6e9cc 100644
--- a/extract_utils.sh
+++ b/extract_utils.sh
@@ -458,7 +458,7 @@ function write_blueprint_packages() {
fi
if [ "$CLASS" = "SHARED_LIBRARIES" ] || [ "$CLASS" = "EXECUTABLES" ] || [ "$CLASS" = "ETC" ] ; then
if [ "$DIRNAME" != "." ]; then
- printf '\tsub_dir: "%s",\n' "$DIRNAME"
+ printf '\trelative_install_path: "%s",\n' "$DIRNAME"
fi
fi
if [ "$CLASS" = "SHARED_LIBRARIES" ] || [ "$CLASS" = "EXECUTABLES" ] ; then