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>
This commit is contained in:
parent
5743d7ed4d
commit
fd36c91db8
2 changed files with 2 additions and 4 deletions
|
@ -5,7 +5,7 @@
|
||||||
include $(TOPDIR)/rules.mk
|
include $(TOPDIR)/rules.mk
|
||||||
|
|
||||||
PKG_NAME:=auc
|
PKG_NAME:=auc
|
||||||
PKG_VERSION:=0.3.0
|
PKG_VERSION:=0.3.1
|
||||||
PKG_RELEASE:=$(AUTORELEASE)
|
PKG_RELEASE:=$(AUTORELEASE)
|
||||||
PKG_LICENSE:=GPL-3.0
|
PKG_LICENSE:=GPL-3.0
|
||||||
|
|
||||||
|
|
|
@ -1449,10 +1449,8 @@ static struct branch_version *select_branch(char *name, char *select_version)
|
||||||
if (bver->snapshot)
|
if (bver->snapshot)
|
||||||
continue;
|
continue;
|
||||||
|
|
||||||
if (!abver || (openwrt_release_verrevcmp(abver->version, bver->version) < 0)) {
|
if (!abver || (openwrt_release_verrevcmp(abver->version, bver->version) < 0))
|
||||||
abver = bver;
|
abver = bver;
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue