From b9f23d957d474016f7fc4af0336d055c5a06a0e9 Mon Sep 17 00:00:00 2001 From: Jeffery To Date: Fri, 19 May 2023 20:03:43 +0800 Subject: [PATCH] gensio: Fix build on build host with Go compiler If the build host has the Go compiler installed, then configure will detect this and will try to compile gensio's Go support, leading to a build failure. This disables Go support entirely to fix this build failure. Signed-off-by: Jeffery To --- net/gensio/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/net/gensio/Makefile b/net/gensio/Makefile index c49da8e13f..b193a04925 100644 --- a/net/gensio/Makefile +++ b/net/gensio/Makefile @@ -45,6 +45,7 @@ CONFIGURE_ARGS += \ --$(if $(CONFIG_GENSIO_PTHREADS),with,without)-pthreads \ --$(if $(CONFIG_GENSIO_GLIB),with,without)-glib \ --$(if $(CONFIG_GENSIO_TCL),with,without)-tcl \ + --without-go \ --without-openipmi \ --with-cplusplus \ --disable-doc