c40f63d870ea8956adee5df417957f799a4673cd
max
  Tue Feb 2 09:02:28 2021 -0800
fixing a typo in gbic, email from Lou, no redmine

diff --git src/product/installer/browserSetup.sh src/product/installer/browserSetup.sh
index 5ec48a7..4d9eff1 100755
--- src/product/installer/browserSetup.sh
+++ src/product/installer/browserSetup.sh
@@ -694,31 +694,31 @@
         # start mysql on boot
         chkconfig --level 2345 $MYSQLD on 
 
         # start mysql now
         /sbin/service $MYSQLD start
 
         secureMysql
         SET_MYSQL_ROOT=1
     else
         echo2 Mysql already installed
     fi
 
     # MySQL-python is required for hgGeneGraph
     # CentOS up to and including 7 default to python2, so MySQL-python is in the repos
     if yum list MySQL-python 2> /dev/null ; then
-            yum -y MySQL-python
+            yum -y install MySQL-python
     # Centos 8 defaults to python3 and it does not have a package MySQL-python anymore
     # So we install python2, the mysql libraries and fix up my_config.h manually
     # This is strange, but I was unable to find a different working solution. MariaDB does not have my_config.h
     else
             yum install -y python2 mysql-devel python2-devel wget
             if [ -f /usr/include/mysql/my_config.h ]; then
                     echo my_config.h found
             else
                 wget https://raw.githubusercontent.com/paulfitz/mysql-connector-c/master/include/my_config.h -P /usr/include/mysql/
             fi
             pip2 install MySQL-python
     fi
 
 }