git: bc7bb3966ad0 - stable/15 - moused: Fix movement of moused/moused to moused/moused/moused

From: Warner Losh <imp_at_FreeBSD.org>
Date: Fri, 05 Sep 2025 05:53:28 UTC
The branch stable/15 has been updated by imp:

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

commit bc7bb3966ad07dd15651456767716d35aac472ea
Author:     Warner Losh <imp@FreeBSD.org>
AuthorDate: 2025-09-05 05:49:44 +0000
Commit:     Warner Losh <imp@FreeBSD.org>
CommitDate: 2025-09-05 05:53:30 +0000

    moused: Fix movement of moused/moused to moused/moused/moused
    
    So aef807876c30 moved moused down a level, so make depend broke. This
    fixes it.
    
    Sponsored by:           Netflix
    
    (cherry picked from commit edd8c4c655925543e2d881811c544473da463147)
---
 tools/build/depend-cleanup.sh | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/tools/build/depend-cleanup.sh b/tools/build/depend-cleanup.sh
index 22bf34439758..aa01db6ccc37 100755
--- a/tools/build/depend-cleanup.sh
+++ b/tools/build/depend-cleanup.sh
@@ -470,3 +470,9 @@ fi
 
 # 20250813  4f766afc1ca0    tcopy converted to C++
 clean_dep   usr.bin/tcopy   tcopy c
+
+# 20250904  aef807876c30    moused binary to directory
+if [ -f "$OBJTOP"/usr.sbin/moused/moused ]; then
+	echo "Removing old moused binary"
+        run rm -fv "$OBJTOP"/usr.sbin/moused/moused
+fi