From 3c1ea4370951811242787b903cbc4cca917a723a Mon Sep 17 00:00:00 2001 From: Yves Martin Date: Fri, 30 Nov 2018 06:54:23 +0100 Subject: [PATCH] syncthing: no support for qoriq/ppc32 (#3460) Resolves #3456 --- cross/syncthing/Makefile | 7 ++++--- spk/syncthing/Makefile | 2 ++ 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/cross/syncthing/Makefile b/cross/syncthing/Makefile index c7deed1200b..72341208aa6 100644 --- a/cross/syncthing/Makefile +++ b/cross/syncthing/Makefile @@ -41,9 +41,10 @@ endif ifeq ($(findstring $(ARCH),$(x64_ARCHES)),$(ARCH)) SYNCTHING_ARCH = amd64 endif -ifeq ($(findstring $(ARCH),$(PPC_ARCHES)),$(ARCH)) -SYNCTHING_ARCH = ppc64 -endif +# Go has no ppc32 support for qoriq https://github.com/golang/go/issues/22885 +#ifeq ($(findstring $(ARCH),$(PPC_ARCHES)),$(ARCH)) +#SYNCTHING_ARCH = ppc32 +#endif ifeq ($(SYNCTHING_ARCH),) $(error Unsupported ARCH $(ARCH)) endif diff --git a/spk/syncthing/Makefile b/spk/syncthing/Makefile index e3fd212ad1e..1b9d8719ebe 100644 --- a/spk/syncthing/Makefile +++ b/spk/syncthing/Makefile @@ -6,6 +6,8 @@ DSM_UI_DIR = app DEPENDS = cross/busybox cross/$(SPK_NAME) +UNSUPPORTED_ARCHS = $(PPC_ARCHES) + MAINTAINER = Safihre DESCRIPTION = Automatically sync files via secure, distributed technology. DESCRIPTION_FRE = Synchronisation automatique de fichiers via une technologie sécurisée et distribuée.