Commit 113f51fb authored by Damir Perisa's avatar Damir Perisa Committed by Aaron Griffin
Browse files

Output full path to package in finddeps

parent fc7f570a
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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