From 113f51fbc01155b3f2d5a66a09f3cf096662cbdc Mon Sep 17 00:00:00 2001 From: Damir Perisa Date: Fri, 4 Jan 2008 12:40:15 -0600 Subject: Output full path to package in finddeps Signed-off-by: Aaron Griffin --- finddeps | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'finddeps') diff --git a/finddeps b/finddeps index 347a7cb..d6f6996 100755 --- a/finddeps +++ b/finddeps @@ -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 -- cgit v1.2.3-24-g4f1b