summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOleksandr Shaposhnikov <o.shaposhnikov@globallogic.com>2018-02-15 16:05:25 +0200
committerOleksandr Shaposhnikov <o.shaposhnikov@globallogic.com>2018-02-15 19:17:54 +0200
commit14e68384a8f8be2ed9fde28fa4255a1c47dc731a (patch)
tree443283197d8ba66cb32fb937937551b40f91a54d
parentfad6b1686336b8d43ed728f3b5ccf154d11f69c7 (diff)
downloadcar-14e68384a8f8be2ed9fde28fa4255a1c47dc731a.tar.gz
This patch fixes names of the lunch targets specified in `vendorsetup.sh`. These names did not correspond to the actual Makefiles, thus executing `lunch` and choosing the entry in the menu did not configure the build and failed. Test: Execute `lunch` and choose any "car" target from the menu, lunch completes successfully. Signed-off-by: Oleksandr Shaposhnikov <o.shaposhnikov@globallogic.com> Change-Id: I63e90bddd358e2d06b70ca578dc0a032d05b8e12
-rw-r--r--vendorsetup.sh8
1 files changed, 4 insertions, 4 deletions
diff --git a/vendorsetup.sh b/vendorsetup.sh
index 1bec9aa..4e87161 100644
--- a/vendorsetup.sh
+++ b/vendorsetup.sh
@@ -20,7 +20,7 @@
# In particular, you can add lunch options with the add_lunch_combo
# function: add_lunch_combo generic-eng
-add_lunch_combo aosp_car_emu_arm-userdebug
-add_lunch_combo aosp_car_emu_arm64-userdebug
-add_lunch_combo aosp_car_emu_x86-userdebug
-add_lunch_combo aosp_car_emu_x86_64-userdebug
+add_lunch_combo aosp_car_arm-userdebug
+add_lunch_combo aosp_car_arm64-userdebug
+add_lunch_combo aosp_car_x86-userdebug
+add_lunch_combo aosp_car_x86_64-userdebug