diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-03 23:42:05 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2019-04-03 23:42:05 (EDT) |
commit | 870561f466a188f6752e4003929d9b3233de59c3 (patch) | |
tree | 3f07ae710eb204f3f78eb3543095b64951cecbcf | |
parent | e77a4c26ccf8ffb5b31727c596427ac3d63174b7 (diff) |
ob-checkbuilddeps: Fix opkg compare-versions ref cmd op
-rw-r--r-- | src/ob-checkbuilddeps.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ob-checkbuilddeps.sh b/src/ob-checkbuilddeps.sh index 0621111..fd01ba5 100644 --- a/src/ob-checkbuilddeps.sh +++ b/src/ob-checkbuilddeps.sh @@ -113,7 +113,7 @@ main() # See compare_versions() above. # The "-e" setting is ignored for pipelines beginning with "!". - ! "${OPKG}" compare-versions 1 '>>' 2 + ! "${OPKG}" compare-versions 1 '<<' 2 opkg_compare_versions_reference_status=${?} check_build_deps || return ${?} |