Skip to content

Commit 8237282

Browse files
authored
Merge branch 'master' into feat/esp32c61
2 parents 976dfd4 + 2601670 commit 8237282

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/copy-libs.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -589,7 +589,7 @@ mv "$PWD/build/config/sdkconfig.h" "$AR_SDK/$MEMCONF/include/sdkconfig.h"
589589
for mem_variant in `jq -c '.mem_variants_files[]' configs/builds.json`; do
590590
skip_file=1
591591
for file_target in $(echo "$mem_variant" | jq -c '.targets[]' | tr -d '"'); do
592-
if [ "$file_target" == "$IDF_TARGET" ]; then
592+
if [ "$file_target" == "$CHIP_VARIANT" ]; then
593593
skip_file=0
594594
break
595595
fi

tools/copy-mem-variant.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ mv "build/config/sdkconfig.h" "$AR_SDK/$MEMCONF/include/sdkconfig.h"
2727
for mem_variant in `jq -c '.mem_variants_files[]' configs/builds.json`; do
2828
skip_file=1
2929
for file_target in $(echo "$mem_variant" | jq -c '.targets[]' | tr -d '"'); do
30-
if [ "$file_target" == "$IDF_TARGET" ]; then
30+
if [ "$file_target" == "$CHIP_VARIANT" ]; then
3131
skip_file=0
3232
break
3333
fi

0 commit comments

Comments
 (0)