diff options
author | Andreas Schneider <asn@cryptomilk.org> | 2020-05-23 15:58:43 +0200 |
---|---|---|
committer | Andreas Schneider <asn@cryptomilk.org> | 2020-05-23 16:00:38 +0200 |
commit | a7e400ceb666e7d643d41599a79a235b61040e0b (patch) | |
tree | 8588dbf6e49d118ff6b84855a0f4c1543d95001f | |
parent | 8d08a5f96c8921d0855705dde087b4a33aa13e25 (diff) | |
download | vendor_lineage-a7e400ceb666e7d643d41599a79a235b61040e0b.tar.gz vendor_lineage-a7e400ceb666e7d643d41599a79a235b61040e0b.tar.bz2 vendor_lineage-a7e400ceb666e7d643d41599a79a235b61040e0b.zip |
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-- | build/tools/extract_utils.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build/tools/extract_utils.sh b/build/tools/extract_utils.sh index 06337d61..7b6e9cc2 100644 --- a/build/tools/extract_utils.sh +++ b/build/tools/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 |