git: 210ff8644846 - stable/13 - depend-cleanup: fix after 99b2ab71c5b6

From: Dimitry Andric <dim_at_FreeBSD.org>
Date: Mon, 09 Dec 2024 14:06:16 UTC
The branch stable/13 has been updated by dim:

URL: https://cgit.FreeBSD.org/src/commit/?id=210ff86448461dd00dce6f826ae58deb5ae44822

commit 210ff86448461dd00dce6f826ae58deb5ae44822
Author:     Dimitry Andric <dim@FreeBSD.org>
AuthorDate: 2024-12-09 14:05:07 +0000
Commit:     Dimitry Andric <dim@FreeBSD.org>
CommitDate: 2024-12-09 14:05:07 +0000

    depend-cleanup: fix after 99b2ab71c5b6
    
    After commit 99b2ab71c5b6 was merged, the stable/13 version of
    depend-cleanup gives an error "run: not found". This is because the "dry
    run" functionality from commit 1ec7cb1b5d18 was never merged.
    
    Remove the "run" invocation to make the script correctly again, as
    merging commit 1ec7cb1b5d18 results in many conflicts.
    
    Direct commit to stable/13, since this does not apply to other branches.
    
    Reported by:    des
    Fixes:          99b2ab71c5b6
---
 tools/build/depend-cleanup.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/build/depend-cleanup.sh b/tools/build/depend-cleanup.sh
index effb6376d225..fd0d7eb01fe7 100755
--- a/tools/build/depend-cleanup.sh
+++ b/tools/build/depend-cleanup.sh
@@ -102,6 +102,6 @@ f="$p"/arm_mve_builtin_sema.inc
 if [ -e "$f" ]; then
 	if grep -q SemaBuiltinConstantArgRange "$f"; then
 		echo "Removing pre-llvm19 clang-tblgen output"
-		run rm -f "$p"/*.inc
+		rm -f "$p"/*.inc
 	fi
 fi