summaryrefslogtreecommitdiffstats
path: root/finddeps
diff options
context:
space:
mode:
authorDamir Perisa <damir.perisa@solnet.ch>2008-01-04 19:40:15 +0100
committerAaron Griffin <aaronmgriffin@gmail.com>2008-01-23 23:11:37 +0100
commit113f51fbc01155b3f2d5a66a09f3cf096662cbdc (patch)
tree89e54d419325d9429d61cf60a77b2d6c9837e2de /finddeps
parentfc7f570aad19ef7d426d0c925d6bf1cdc05b1e1a (diff)
downloaddevtools-113f51fbc01155b3f2d5a66a09f3cf096662cbdc.tar.gz
devtools-113f51fbc01155b3f2d5a66a09f3cf096662cbdc.tar.xz
Output full path to package in finddeps
Signed-off-by: Aaron Griffin <aaronmgriffin@gmail.com>
Diffstat (limited to 'finddeps')
-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