From 9e477679e2e5f4c5c4fca5e8d01032b36c45f9cf Mon Sep 17 00:00:00 2001 From: Jeffrey Townsend Date: Wed, 9 Jan 2019 07:35:19 -0800 Subject: [PATCH] The previosu restriction to amd64 was wrong. --- Makefile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 1d206070..39e728f8 100644 --- a/Makefile +++ b/Makefile @@ -13,7 +13,7 @@ endif include $(ONL)/make/config.mk # All available architectures. -ALL_ARCHES := amd64 +ALL_ARCHES := amd64 powerpc arm64 armel # Build rule for each architecture. define build_arch_template @@ -25,8 +25,8 @@ $(foreach a,$(ALL_ARCHES),$(eval $(call build_arch_template,$(a)))) # Available build architectures based on the current suite BUILD_ARCHES_wheezy := amd64 powerpc -BUILD_ARCHES_jessie := amd64 powerpc armel -BUILD_ARCHES_stretch := arm64 amd64 +BUILD_ARCHES_jessie := amd64 +BUILD_ARCHES_stretch := amd64 # Build available architectures by default. .DEFAULT_GOAL := all