From 73db11a4d1e1940b6be65e72bb02bb0d4a701b95 Mon Sep 17 00:00:00 2001 From: Mark Johnston Date: Tue, 7 Dec 2021 13:01:05 -0500 Subject: [PATCH] depend-cleanup.sh: Make the output message more precise Sponsored by: The FreeBSD Foundation --- 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 6055a6b3364..b6ad7701c32 100755 --- a/tools/build/depend-cleanup.sh +++ b/tools/build/depend-cleanup.sh @@ -30,7 +30,7 @@ clean_dep() { if [ -e "$OBJTOP"/$1/.depend.$2.pico ] && \ egrep -qw "$2\.$3" "$OBJTOP"/$1/.depend.$2.pico; then \ - echo "Removing stale dependencies for $2.$3"; \ + echo "Removing stale dependencies and objects for $2.$3"; \ rm -f \ "$OBJTOP"/$1/.depend.$2.* \ "$OBJTOP"/$1/$2.*o \