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

configure: bash var typo

This commit is contained in:
Zdenek Kabelac 2021-10-15 00:32:36 +02:00
parent 04725763a1
commit 52a52d5567
2 changed files with 2 additions and 2 deletions

2
configure vendored
View File

@ -11646,7 +11646,7 @@ $as_echo "#define APP_MACHINEID_SUPPORT 1" >>confdefs.h
SYSTEMD_MIN_VERSION=234
fi
if test -n "SYSTEMD_MIN_VERSION"; then :
if test -n "$SYSTEMD_MIN_VERSION"; then :
pkg_config_init

View File

@ -1145,7 +1145,7 @@ AS_IF([test "$APP_MACHINEID_SUPPORT" = yes],
SYSTEMD_MIN_VERSION=234)
dnl -- Look for libsystemd libraries
AS_IF([test -n "SYSTEMD_MIN_VERSION"],[
AS_IF([test -n "$SYSTEMD_MIN_VERSION"],[
pkg_config_init
PKG_CHECK_MODULES(SYSTEMD, systemd >= "$SYSTEMD_MIN_VERSION", [], $bailout)
SYSTEMD_LIBS="-lsystemd"])