You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: tools/copy-libs.sh
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -435,24 +435,24 @@ for item; do
435
435
rel_f=${f#*$item}
436
436
rel_p=${rel_f%/*}
437
437
mkdir -p "$out_cpath$rel_p"
438
-
cp -n$f"$out_cpath$rel_p/"
438
+
cp --update=none$f"$out_cpath$rel_p/"
439
439
done
440
440
forfin`find "$item" -name '*.hpp'`;do
441
441
rel_f=${f#*$item}
442
442
rel_p=${rel_f%/*}
443
443
mkdir -p "$out_cpath$rel_p"
444
-
cp -n$f"$out_cpath$rel_p/"
444
+
cp --update=none$f"$out_cpath$rel_p/"
445
445
done
446
446
forfin`find "$item" -name '*.inc'`;do
447
447
rel_f=${f#*$item}
448
448
rel_p=${rel_f%/*}
449
449
mkdir -p "$out_cpath$rel_p"
450
-
cp -n$f"$out_cpath$rel_p/"
450
+
cp --update=none$f"$out_cpath$rel_p/"
451
451
done
452
452
# Temporary measure to fix issues caused by https://github.com/espressif/esp-idf/commit/dc4731101dd567cc74bbe4d0f03afe52b7db9afb#diff-1d2ce0d3989a80830fdf230bcaafb3117f32046d16cf46616ac3d55b4df2a988R17
453
453
if [[ "$fname"=="bt"&&"$out_sub"=="/include/$IDF_TARGET/include"&&-f"$ipath/controller/$IDF_TARGET/esp_bt_cfg.h" ]];then
0 commit comments