From 26c41c060bf30750fe2cded87edaf1ae47027523 Mon Sep 17 00:00:00 2001 From: Dodji Seketeli Date: Thu, 20 May 2021 11:06:15 +0200 Subject: [PATCH] Fix thinko in configure.ac * configure.ac: Fix a thinko I spotted while looking at something else. Signed-off-by: Dodji Seketeli --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 495460bf..0b64c3e5 100644 --- a/configure.ac +++ b/configure.ac @@ -273,7 +273,7 @@ if test x$ENABLE_RPM = xyes -o x$ENABLE_RPM = xauto; then fi fi -if test x$ENABLE_RPM = xyes -a x$ENABLE_RPM415 = xauto; then +if test x$ENABLE_RPM = xyes -o x$ENABLE_RPM415 = xauto; then rpmversion=$(rpm --version | sed "s/RPM version //") AC_MSG_NOTICE([detected rpm version: $rpmversion]) if [[[ "$rpmversion" > "4.14.0" ]]]; then -- 2.43.5