Use MySQL 5.5 for MySQL extension. (#786)

This commit is contained in:
Nicholas Hastings
2018-03-20 17:12:30 -04:00
committed by GitHub
parent 4fd68939d3
commit 4637cf9221
2 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -183,7 +183,7 @@ class SMConfig(object):
self.mysql_root['x86'] = builder.options.mysql_path
else:
for i in range(7):
self.mysql_root['x86'] = ResolveEnvPath('MYSQL5', 'mysql-5.' + str(i))
self.mysql_root['x86'] = ResolveEnvPath('MYSQL55', 'mysql-5.' + str(i))
if self.mysql_root['x86']:
break
if not self.mysql_root['x86'] or not os.path.isdir(self.mysql_root['x86']):
@@ -196,7 +196,7 @@ class SMConfig(object):
self.mysql_root['x64'] = builder.options.mysql64_path
else:
for i in range(7):
self.mysql_root['x64'] = ResolveEnvPath('MYSQL5_64', 'mysql-5.' + str(i) + '-x86_64')
self.mysql_root['x64'] = ResolveEnvPath('MYSQL55_64', 'mysql-5.' + str(i) + '-x86_64')
if self.mysql_root['x64']:
break
if not self.mysql_root['x64'] or not os.path.isdir(self.mysql_root['x64']):