This is an automated email from the git hooks/post-receive script. Git pushed a commit to branch release/5.1 in repository ffmpeg.
commit 3e79a41803573cea9097f16afc9a67e75c275595 Author: Timo Rothenpieler <[email protected]> AuthorDate: Sun Nov 30 21:39:04 2025 +0100 Commit: Timo Rothenpieler <[email protected]> CommitDate: Sun Nov 30 21:47:40 2025 +0100 tools/check_arm_indent: skip empty glob --- tools/check_arm_indent.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tools/check_arm_indent.sh b/tools/check_arm_indent.sh index 5becfe0aec..ff6f4006f1 100755 --- a/tools/check_arm_indent.sh +++ b/tools/check_arm_indent.sh @@ -34,6 +34,9 @@ fi ret=0 for i in */aarch64/*.S */aarch64/*/*.S; do + if ! [ -f "$i" ]; then + continue + fi case $i in libavcodec/aarch64/h264idct_neon.S|libavcodec/aarch64/h26x/epel_neon.S|libavcodec/aarch64/h26x/qpel_neon.S|libavcodec/aarch64/vc1dsp_neon.S) # Skip files with known (and tolerated) deviations from the tool. _______________________________________________ ffmpeg-cvslog mailing list -- [email protected] To unsubscribe send an email to [email protected]
