1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

configure: typo in configure --with-default-raid10-segtype causing it to be unrecognized

AC_ARG_WITH(default-raid10r-segtype --> AC_ARG_WITH(default-raid10-segtype

(...raid10r... --> ...raid10... - extra "r")
This commit is contained in:
Peter Rajnoha 2015-02-19 16:17:19 +01:00
parent af395e61d5
commit f80e7bb61b
4 changed files with 7 additions and 6 deletions

View File

@ -1,5 +1,6 @@
Version 2.02.117 -
====================================
Fix configure to properly recognize --with-default-raid10-segtype option.
Do not refresh filters/rescan if no signature is wiped during pvcreate.
Enforce none external dev info for wiping during pvcreate to avoid races.
Add support for VG system_id to control host access to VGs.

2
aclocal.m4 vendored
View File

@ -1,4 +1,4 @@
# generated automatically by aclocal 1.13.4 -*- Autoconf -*-
# generated automatically by aclocal 1.14.1 -*- Autoconf -*-
# Copyright (C) 1996-2013 Free Software Foundation, Inc.

8
configure vendored
View File

@ -880,7 +880,7 @@ with_snapshots
with_mirrors
with_raid
with_default_mirror_segtype
with_default_raid10r_segtype
with_default_raid10_segtype
with_replicators
with_default_sparse_segtype
with_thin
@ -7572,9 +7572,9 @@ else
fi
# Check whether --with-default-raid10r-segtype was given.
if test "${with_default_raid10r_segtype+set}" = set; then :
withval=$with_default_raid10r_segtype; DEFAULT_RAID10_SEGTYPE=$withval
# Check whether --with-default-raid10-segtype was given.
if test "${with_default_raid10_segtype+set}" = set; then :
withval=$with_default_raid10_segtype; DEFAULT_RAID10_SEGTYPE=$withval
else
DEFAULT_RAID10_SEGTYPE="raid10"
fi

View File

@ -354,7 +354,7 @@ AC_ARG_WITH(default-mirror-segtype,
AC_HELP_STRING([--with-default-mirror-segtype=TYPE],
[default mirror segtype: raid1/mirror [raid1]]),
DEFAULT_MIRROR_SEGTYPE=$withval, DEFAULT_MIRROR_SEGTYPE="raid1")
AC_ARG_WITH(default-raid10r-segtype,
AC_ARG_WITH(default-raid10-segtype,
AC_HELP_STRING([--with-default-raid10-segtype=TYPE],
[default mirror segtype: raid10/mirror [raid10]]),
DEFAULT_RAID10_SEGTYPE=$withval, DEFAULT_RAID10_SEGTYPE="raid10")