diff options
author | P. J. McDermott <pjm@nac.net> | 2013-08-14 12:08:53 (EDT) |
---|---|---|
committer | P. J. McDermott <pjm@nac.net> | 2013-08-14 12:15:09 (EDT) |
commit | d44ba3fdd61ccedc00033e47c4d4eea117002fc4 (patch) | |
tree | 1a6644acdd3d8f62ea238444009be1cc9c85f522 /lib/remove.sh | |
parent | 892d2b57396cf1469742367b65a5e945e9944c39 (diff) |
db_*_binver(): Reverse arch and plat.
Diffstat (limited to 'lib/remove.sh')
-rw-r--r-- | lib/remove.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/remove.sh b/lib/remove.sh index a89ff13..79428f0 100644 --- a/lib/remove.sh +++ b/lib/remove.sh @@ -53,12 +53,12 @@ remove_packages_from_suite_archplat() local pkg= local file= - binver="$(db_get_binver "${chan}" "${dist}" "${plat}" "${arch}" \ + binver="$(db_get_binver "${chan}" "${dist}" "${arch}" "${plat}" \ "${source}")" if [ "x${binver}" = 'x' ]; then return 0 fi - db_del_binver "${chan}" "${dist}" "${plat}" "${arch}" "${source}" + db_del_binver "${chan}" "${dist}" "${arch}" "${plat}" "${source}" refs=$(db_dec_references "${plat}" "${arch}" "${source}" "${binver}") while read -r size sect pkg; do |