From: Peter Korsgaard Date: Thu, 5 Oct 2017 15:06:20 +0000 (+0200) Subject: lvm2: add host variant X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=90cfc5f16a29f2c469048e4019af63289d106e87;p=buildroot.git lvm2: add host variant This is only for the device-mapper library, so a user selectable Config.in.host option isn't needed. [Peter: add host-pkgconf dependency as pointed out by Arnout] Signed-off-by: Peter Korsgaard --- diff --git a/package/lvm2/lvm2.mk b/package/lvm2/lvm2.mk index f7f706976f..9880c12bf0 100644 --- a/package/lvm2/lvm2.mk +++ b/package/lvm2/lvm2.mk @@ -51,4 +51,17 @@ ifeq ($(BR2_TOOLCHAIN_SUPPORTS_PIE),) LVM2_CONF_ENV += ac_cv_flag_HAVE_PIE=no endif +HOST_LVM2_DEPENDENCIES = host-pkgconf +HOST_LVM2_CONF_OPTS = \ + --enable-write_install \ + --enable-pkgconfig \ + --disable-cmdlib \ + --disable-dmeventd \ + --disable-applib \ + --disable-fsadm \ + --disable-readline +HOST_LVM2_MAKE_OPTS = device-mapper +HOST_LVM2_INSTALL_OPTS = install_device-mapper + $(eval $(autotools-package)) +$(eval $(host-autotools-package))