From: Jeffery To Date: Fri, 19 May 2023 12:03:43 +0000 (+0800) Subject: gensio: Fix build on build host with Go compiler X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=b9f23d957d474016f7fc4af0336d055c5a06a0e9;p=feed%2Fpackages.git 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 --- 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