From 6388d8f3efc0acf1036b60b54f0123ca2de60f43 Mon Sep 17 00:00:00 2001
From: Matthew Thode <mthode@mthode.org>
Date: Tue, 29 Aug 2017 18:45:39 -0500
Subject: [PATCH] Fix venv build in when mariadb is installed

Previous change forgot to remove the NOT, this fixes that.  We should
install libmariadbclient-dev if libmariadbclient is detected, not
libmysqlclient-dev.

Change-Id: Id261a2b0d3574ed8995c969320000a742e60f4da
---
 leap-upgrades/lib/functions.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/leap-upgrades/lib/functions.sh b/leap-upgrades/lib/functions.sh
index d4e07eb3..568b0e80 100644
--- a/leap-upgrades/lib/functions.sh
+++ b/leap-upgrades/lib/functions.sh
@@ -418,7 +418,7 @@ function build_venv {
 
     # Install libmysqlclient-dev so that we are later able to build mysql-python
     # Allow libmariadbclient-dev to be used instead
-    if ! apt --installed list | grep libmariadbclient; then
+    if apt --installed list | grep libmariadbclient; then
       apt-get -y install libmariadbclient-dev > /dev/null
     else
       apt-get -y install libmysqlclient-dev > /dev/null