kiss: Show context when using fixdeps

This commit is contained in:
Dylan Araps 2020-03-23 12:45:51 +02:00
parent 811808f881
commit d4d01a5512
No known key found for this signature in database
GPG Key ID: 46D62DD9F1DE636E
1 changed files with 2 additions and 1 deletions

3
kiss
View File

@ -422,7 +422,8 @@ pkg_fixdeps() {
# Skip listing these packages as dependencies.
musl|gcc|${PWD##*/}|"") ;;
*) printf '%s\n' "$dep"
printf 'Found %s\n' "$dep" >/dev/tty
printf 'Found %s\n' \
"$dep (${file##$pkg_dir/${PWD##*/}})" >/dev/tty
esac
done ||:
done } |