summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xfinddeps4
1 files changed, 2 insertions, 2 deletions
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