Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 2d88d236 authored by Dan Willemsen's avatar Dan Willemsen Committed by android-build-merger
Browse files

Merge \\\"Detect \\\`uname -m\\\` == i686 as a 32-bit host\\\" am: 55d4a46f am: db9f3489

am: 3b2288e3

Change-Id: I707398613a8aaf095945899f56ac3eb2e13a215b
parents 1cfa3f05 3b2288e3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -78,7 +78,7 @@ ifneq (,$(findstring x86_64,$(UNAME)))
  HOST_2ND_ARCH := x86
  HOST_IS_64_BIT := true
else
ifneq (,$(findstring x86,$(UNAME)))
ifneq (,$(findstring i686,$(UNAME))$(findstring x86,$(UNAME)))
$(error Building on a 32-bit x86 host is not supported: $(UNAME)!)
endif
endif