From ebfd50aa574580e35256d0b29d33aebc4a369d7e Mon Sep 17 00:00:00 2001 From: AmadeusGhost <42570690+AmadeusGhost@users.noreply.github.com> Date: Fri, 29 May 2020 12:06:23 +0800 Subject: [PATCH] baidupcs-web: correct download for arm (#4695) --- package/ctcgfw/baidupcs-web/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/package/ctcgfw/baidupcs-web/Makefile b/package/ctcgfw/baidupcs-web/Makefile index fa23a9c95c..70f4b6af3f 100644 --- a/package/ctcgfw/baidupcs-web/Makefile +++ b/package/ctcgfw/baidupcs-web/Makefile @@ -47,7 +47,13 @@ ifeq ($(ARCH),mips) endif ifeq ($(ARCH),arm) - PKG_ARCH_BAIDUPCS-WEB:=arm +ifeq ($(BOARD),bcm53xx) + PKG_ARCH_BAIDUPCS-WEB:=armv5 +else ifeq ($(BOARD),kirkwood) + PKG_ARCH_BAIDUPCS-WEB:=armv5 +else + PKG_ARCH_BAIDUPCS-WEB:=armv7 +endif endif ifeq ($(ARCH),aarch64)