Skip to content

Commit

Permalink
ANDROID: build.configs: migrate away from CC_LD_ARG
Browse files Browse the repository at this point in the history
... use TOOL_ARGS instead.

Bug: 192548924
Signed-off-by: Matthias Maennich <[email protected]>
Change-Id: I5a6eff9423c2c30a7c402f3257d1c1049d2fc9d1
  • Loading branch information
metti authored and myxoid committed Jul 2, 2021
1 parent abe2e57 commit 3e17899
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.config.gki_kasan
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,6 @@ function update_kasan_config() {
-d CFI_CLANG \
-d SHADOW_CALL_STACK
(cd ${OUT_DIR} && \
make ${CC_LD_ARG} O=${OUT_DIR} olddefconfig)
make ${TOOL_ARGS} O=${OUT_DIR} olddefconfig)
}

2 changes: 1 addition & 1 deletion build.config.gki_kprobes
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,6 @@ function update_kprobes_config() {
-e CONFIG_CHECKPOINT_RESTORE \
-d CONFIG_RANDOMIZE_BASE
(cd ${OUT_DIR} && \
make ${CC_LD_ARG} O=${OUT_DIR} olddefconfig)
make ${TOOL_ARGS} O=${OUT_DIR} olddefconfig)
}

0 comments on commit 3e17899

Please sign in to comment.