This is an automated email from the git hooks/post-receive script.

Git pushed a commit to branch release/5.0
in repository ffmpeg.

commit 1c23f94d2b7b1e7b8d1ce6904dccca33135b6170
Author:     Timo Rothenpieler <[email protected]>
AuthorDate: Sun Nov 30 21:39:04 2025 +0100
Commit:     Timo Rothenpieler <[email protected]>
CommitDate: Sun Nov 30 21:48:32 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]

Reply via email to