git: b1ecdb70c947 - stable/13 - depend-cleanup.sh: Make the output message more precise
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Mon, 13 Dec 2021 13:28:51 UTC
The branch stable/13 has been updated by markj: URL: https://cgit.FreeBSD.org/src/commit/?id=b1ecdb70c9474ca42bef07e95f243fbfc25f5dc9 commit b1ecdb70c9474ca42bef07e95f243fbfc25f5dc9 Author: Mark Johnston <markj@FreeBSD.org> AuthorDate: 2021-12-07 18:01:05 +0000 Commit: Mark Johnston <markj@FreeBSD.org> CommitDate: 2021-12-13 13:27:31 +0000 depend-cleanup.sh: Make the output message more precise Sponsored by: The FreeBSD Foundation (cherry picked from commit 73db11a4d1e1940b6be65e72bb02bb0d4a701b95) --- 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 6055a6b33647..b6ad7701c32b 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 \