Skip to content

Commit

Permalink
syncthing: no support for qoriq/ppc32 (#3460)
Browse files Browse the repository at this point in the history
Resolves #3456
  • Loading branch information
ymartin59 authored Nov 30, 2018
1 parent 1921bcc commit 3c1ea43
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
7 changes: 4 additions & 3 deletions cross/syncthing/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions spk/syncthing/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 3c1ea43

Please sign in to comment.