[applied] Fix thinko in configure.ac
Commit Message
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(-)
@@ -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