diff options
author | merakor <cem@ckyln.com> | 2020-08-31 21:24:30 +0000 |
---|---|---|
committer | merakor <cem@ckyln.com> | 2020-08-31 21:24:30 +0000 |
commit | ee950c5419e195deaf1e1e0d5001536b1ec8e1c1 (patch) | |
tree | c2215b032d9829fd3b335d316ee90dcbbc076b07 | |
parent | 2893ed3c36ff95f548df44071fa2fb3bdd27cbf5 (diff) | |
download | cpt-ee950c5419e195deaf1e1e0d5001536b1ec8e1c1.tar.gz |
cpt-revdepends: do not require to be installed, skip make deps.
FossilOrigin-Name: cd09adcc85e067423a35f42c3bccd059ae488c1271a132230686e36d405602af
-rwxr-xr-x | contrib/cpt-revdepends | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/contrib/cpt-revdepends b/contrib/cpt-revdepends index 9824877..db5b796 100755 --- a/contrib/cpt-revdepends +++ b/contrib/cpt-revdepends @@ -2,11 +2,10 @@ # Display packages which depend on package case "$1" in ''|--help|-h) printf '%s\n' "usage: ${0##*/} [pkg]" ; exit 0 ; esac -cpt-search "$1" >/dev/null # 'cd' to the database directory as a simple way of # stripping the path and performing a 'basename'. cd "$CPT_ROOT/var/db/cpt/installed" # Use a simple 'grep' to display packages depending on '$1'. -grep "^$1" -- */depends +grep "^$1\$" -- */depends |