From 8b925956213a66ed910569036f03a1c7cc73fac3 Mon Sep 17 00:00:00 2001 From: Karl Vogel Date: Thu, 26 Oct 2017 10:55:50 +0200 Subject: [PATCH] utils/lxc: disable gnutls during configure Previous versions of LXC never compiled in gnutls support due to a bug in the configure script. As other TLS implementations are not supported and the feature was disabled in previous builds, disable it during configure. See https://github.com/lxc/lxc/pull/1360 for details regarding the bug in the autoconf of the previous versions. Signed-off-by: Karl Vogel --- utils/lxc/Makefile | 1 + 1 file changed, 1 insertion(+) diff --git a/utils/lxc/Makefile b/utils/lxc/Makefile index 707bea29b5..4600e9c9ee 100644 --- a/utils/lxc/Makefile +++ b/utils/lxc/Makefile @@ -124,6 +124,7 @@ define Package/lxc-init endef CONFIGURE_ARGS += \ + --disable-gnutls \ --disable-apparmor \ --disable-doc \ --disable-examples \