Skip to content

Commit

Permalink
app-emulation/qemu: use ver_test instead of versionator
Browse files Browse the repository at this point in the history
Closes: https://bugs.gentoo.org/674628
Package-Manager: Portage-2.3.54, Repoman-2.3.12
Signed-off-by: Matthias Maier <[email protected]>
  • Loading branch information
tamiko committed Jan 5, 2019
1 parent 3be906b commit 18904fe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app-emulation/qemu/qemu-3.1.0.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -756,7 +756,7 @@ src_install() {
firmware_abi_change() {
local pv
for pv in ${REPLACING_VERSIONS}; do
if ! version_is_at_least ${FIRMWARE_ABI_VERSION} ${pv}; then
if ver_test $pv -lt ${FIRMWARE_ABI_VERSION}; then
return 0
fi
done
Expand Down
2 changes: 1 addition & 1 deletion app-emulation/qemu/qemu-9999.ebuild
Original file line number Diff line number Diff line change
Expand Up @@ -748,7 +748,7 @@ src_install() {
firmware_abi_change() {
local pv
for pv in ${REPLACING_VERSIONS}; do
if ! version_is_at_least ${FIRMWARE_ABI_VERSION} ${pv}; then
if ver_test $pv -lt ${FIRMWARE_ABI_VERSION}; then
return 0
fi
done
Expand Down

0 comments on commit 18904fe

Please sign in to comment.