diff --git a/WHATS_NEW b/WHATS_NEW index 79dbf01fc..af6ced419 100644 --- a/WHATS_NEW +++ b/WHATS_NEW @@ -1,5 +1,6 @@ Version 2.02.110 - ================================== + Fix typo breaking configure --with-lvm1=shared. Modify lvresize code to handle raid/mirrors and physical extents. Allow conversion of raid1 LV into a snapshot LV or snapshot origin LV. Cleanly error when creating RAID with stripe size < PAGE_SIZE. diff --git a/configure.in b/configure.in index 1b8c338e0..70f3b78c6 100644 --- a/configure.in +++ b/configure.in @@ -271,7 +271,7 @@ AC_ARG_WITH(lvm1, AC_MSG_RESULT($LVM1) case "$LVM1" in - none|share) ;; + none|shared) ;; internal) AC_DEFINE([LVM1_INTERNAL], 1, [Define to 1 to include built-in support for LVM1 metadata.]) ;; *) AC_MSG_ERROR([--with-lvm1 parameter invalid]) ;;