diff options
author | 2018-08-16 11:29:44 +0200 | |
---|---|---|
committer | 2018-08-21 11:47:16 +0200 | |
commit | 1575512ad41e2118448daf566a6012714592aca7 (patch) | |
tree | e84cc76ae09a485727de4dd503caf00d44167e68 | |
parent | c2cbaa1babcdbde90527f38f41ee8ee42bdefd45 (diff) | |
download | buildroot-1575512ad41e2118448daf566a6012714592aca7.tar.gz buildroot-1575512ad41e2118448daf566a6012714592aca7.tar.bz2 |
lvm2: host variant needs host-libaio
Since the bump of lvm2 to 2.02.180 in commit
8e666bf29e762f3c7681a48d0ee350f8396d798f, lvm2 needs libaio. This was
properly taken into account for the target lvm2 variant, but not the
host lvm2 variant. This commit adds host-libaio as a dependency of
host-lvm2.
Fixes:
http://autobuild.buildroot.net/results/f95dd353c17bdfd00fde6762e58aa32e6830b52b/
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
-rw-r--r-- | package/lvm2/lvm2.mk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/package/lvm2/lvm2.mk b/package/lvm2/lvm2.mk index 2352f17af0..152381d65d 100644 --- a/package/lvm2/lvm2.mk +++ b/package/lvm2/lvm2.mk @@ -59,7 +59,7 @@ ifeq ($(BR2_TOOLCHAIN_SUPPORTS_PIE),) LVM2_CONF_ENV += ac_cv_flag_HAVE_PIE=no endif -HOST_LVM2_DEPENDENCIES = host-pkgconf +HOST_LVM2_DEPENDENCIES = host-pkgconf host-libaio HOST_LVM2_CONF_OPTS = \ --enable-write_install \ --enable-pkgconfig \ |