[applied] Fix thinko in configure.ac

Message ID 87h7ir5fn4.fsf@redhat.com
State Committed
Headers
Series [applied] Fix thinko in configure.ac |

Commit Message

Dodji Seketeli May 25, 2021, 9:25 a.m. UTC
  Hello,

I spotted this thinko while looking at something else.

	* configure.ac: Fix a thinko I spotted while looking at something
	else.

Signed-off-by: Dodji Seketeli <dodji@redhat.com>

Applied to master.

---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
  

Patch

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