ANDROID: allmodconfig build: adopt new TOOL_ARGS export

aosp/1749720 moves the TOOL_ARGS to setup_env and makes it a proper
string export. Adopt that new format.

Bug: 189451175
Signed-off-by: Matthias Maennich <maennich@google.com>
Change-Id: Idf28c4dce9e92141c487154133333edb3b0d8e61
This commit is contained in:
Matthias Maennich 2021-06-28 12:17:21 +01:00
parent 7c4aaf7f0d
commit 4840539ea1

View File

@ -9,5 +9,5 @@ function update_config() {
-e UNWINDER_FRAME_POINTER \
(cd ${OUT_DIR} && \
make O=${OUT_DIR} $archsubarch CROSS_COMPILE=${CROSS_COMPILE} "${TOOL_ARGS[@]}" ${MAKE_ARGS} olddefconfig)
make O=${OUT_DIR} $archsubarch CROSS_COMPILE=${CROSS_COMPILE} ${TOOL_ARGS} ${MAKE_ARGS} olddefconfig)
}