diff options
Diffstat (limited to 'package/lvm2/Config.in')
-rw-r--r-- | package/lvm2/Config.in | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/package/lvm2/Config.in b/package/lvm2/Config.in index 5d6209fc12..3f8a52d47e 100644 --- a/package/lvm2/Config.in +++ b/package/lvm2/Config.in @@ -2,6 +2,7 @@ config BR2_PACKAGE_LVM2 bool "lvm2 & device mapper" depends on BR2_LARGEFILE depends on BR2_USE_MMU # needs fork() + depends on !BR2_PREFER_STATIC_LIB # It fails to build statically help This is LVM2, the rewrite of The Linux Logical Volume Manager. LVM supports enterprise level volume management of disk and disk @@ -33,6 +34,6 @@ config BR2_PACKAGE_LVM2_APP_LIBRARY endif -comment "lvm2 needs a toolchain w/ largefile" +comment "lvm2 needs a toolchain w/ largefile, dynamic library" depends on BR2_USE_MMU - depends on !BR2_LARGEFILE + depends on !BR2_LARGEFILE || BR2_PREFER_STATIC_LIB |