Output full path to package in finddeps

Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
This commit is contained in:
Damir Perisa 2008-01-04 12:40:15 -06:00 committed by Aaron Griffin
parent fc7f570aad
commit 113f51fbc0
1 changed files with 2 additions and 2 deletions

View File

@ -24,14 +24,14 @@ for d in $(find . -type d); do
# lose the version comaparator, if any
depname=${dep%%[<>=]*}
if [ "$depname" = "$match" ]; then
echo $pkgname
echo "$d (depends)"
fi
done
for dep in "${makedepends[@]}"; do
# lose the version comaparator, if any
depname=${dep%%[<>=]*}
if [ "$depname" = "$match" ]; then
echo $pkgname
echo "$d (makedepends)"
fi
done
fi