diff options
author | Jeffery To <jeffery.to@gmail.com> | 2023-05-19 20:03:43 +0800 |
---|---|---|
committer | Jeffery To <jeffery.to@gmail.com> | 2023-05-19 20:03:43 +0800 |
commit | b9f23d957d474016f7fc4af0336d055c5a06a0e9 (patch) | |
tree | 22cd196174d6f1746fb06ed493d9ea864c8f32d0 /net/gensio/Makefile | |
parent | 142bbc77f1aa8a81cd1ffb1ebad3ce4f2ef24b8a (diff) |
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 <jeffery.to@gmail.com>
Diffstat (limited to 'net/gensio/Makefile')
-rw-r--r-- | net/gensio/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/gensio/Makefile b/net/gensio/Makefile index c49da8e13..b193a0492 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 |