diff options
author | Karl Vogel <karl.vogel@gmail.com> | 2017-10-26 10:55:50 +0200 |
---|---|---|
committer | Karl Vogel <karl.vogel@gmail.com> | 2017-10-26 11:29:43 +0200 |
commit | 8b925956213a66ed910569036f03a1c7cc73fac3 (patch) | |
tree | 647fc54383c1729beed4c5d416e5922c1ba04e9a /utils | |
parent | aacfbb244a4c8366785996ee225615faab277158 (diff) |
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 <karl.vogel@gmail.com>
Diffstat (limited to 'utils')
-rw-r--r-- | utils/lxc/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/lxc/Makefile b/utils/lxc/Makefile index 707bea29b..4600e9c9e 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 \ |