auc: update to 0.3.1
Remove wrongly placed 'break' statement to actually jump to the most
recent version of a release branch.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
(cherry picked from commit fd36c91db8
)
This commit is contained in:
parent
62a7ef57d4
commit
0f48935aba
2 changed files with 2 additions and 4 deletions
|
@ -5,7 +5,7 @@
|
|||
include $(TOPDIR)/rules.mk
|
||||
|
||||
PKG_NAME:=auc
|
||||
PKG_VERSION:=0.3.0
|
||||
PKG_VERSION:=0.3.1
|
||||
PKG_RELEASE:=$(AUTORELEASE)
|
||||
PKG_LICENSE:=GPL-3.0
|
||||
|
||||
|
|
|
@ -1449,10 +1449,8 @@ static struct branch_version *select_branch(char *name, char *select_version)
|
|||
if (bver->snapshot)
|
||||
continue;
|
||||
|
||||
if (!abver || (openwrt_release_verrevcmp(abver->version, bver->version) < 0)) {
|
||||
if (!abver || (openwrt_release_verrevcmp(abver->version, bver->version) < 0))
|
||||
abver = bver;
|
||||
break;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue