From 179dfc8d26552cea2fe936f971c0132f0fef0299 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Wed, 13 Sep 2017 13:40:58 +0200 Subject: [PATCH 180/310] Makefile: Explicitly reduce TARGETS to amd64 and i386 (XXX: workaround) Other targets currently aren't supported by ElectroBSD and somehow result in /usr/src/tools/build/options/makeman entering an endless loop. Reducing the targets doesn't impact the supported targets and works around the "makeman" issue for "now". Obtained from: ElectroBSD --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index e16557f83371..735c0feafa82 100644 --- a/Makefile +++ b/Makefile @@ -516,7 +516,7 @@ EXTRA_ARCHES_mips+= mipsn32 # powerpcspe excluded from main list until clang fixed EXTRA_ARCHES_powerpc= powerpcspe powerpc64le .endif -TARGETS?=amd64 arm arm64 i386 mips powerpc riscv +TARGETS?=amd64 i386 _UNIVERSE_TARGETS= ${TARGETS} TARGET_ARCHES_arm?= armv6 armv7 TARGET_ARCHES_arm64?= aarch64 -- 2.37.1