lxc: Disable use of unwanted libraries explicity
Otherwise one gets a failure if the libraries (e.g. Python header file) exist in the build system. Worse in some cases is host headers being found if one doesn't specifically disable a library search in autotools. It is especially important that Python is disabled by default. Signed-off-by: Daniel F. Dickinson <cshored@thecshore.com>
This commit is contained in:
parent
5eddaa9224
commit
cc039d801e
1 changed files with 4 additions and 1 deletions
|
@ -140,10 +140,13 @@ define Package/lxc-init
|
||||||
endef
|
endef
|
||||||
|
|
||||||
CONFIGURE_ARGS += \
|
CONFIGURE_ARGS += \
|
||||||
--disable-gnutls \
|
|
||||||
--disable-apparmor \
|
--disable-apparmor \
|
||||||
|
--disable-cgmanager \
|
||||||
--disable-doc \
|
--disable-doc \
|
||||||
--disable-examples \
|
--disable-examples \
|
||||||
|
--disable-gnutls \
|
||||||
|
--disable-selinux \
|
||||||
|
--disable-python \
|
||||||
--enable-lua=yes \
|
--enable-lua=yes \
|
||||||
--with-lua-pc="$(STAGING_DIR)/usr/lib/pkgconfig/lua.pc"
|
--with-lua-pc="$(STAGING_DIR)/usr/lib/pkgconfig/lua.pc"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue