Skip to content

Commit

Permalink
db_mysql Look for MariaDB as well as MySQL
Browse files Browse the repository at this point in the history
  • Loading branch information
oej committed Jun 30, 2017
1 parent ccb368e commit 4f58712
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/modules/db_mysql/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ MYSQLCFG=$(shell which mysql_config)
ifeq ($(MYSQLCFG),)
MYSQLCFG=$(shell which mysql_config5)
endif
# If no Mysql - do we have MariaDB?
ifeq ($(MYSQLCFG),)
MYSQLCFG=$(shell which mariadb_config)
endif
endif

ifneq ($(MYSQLCFG),)
Expand Down

0 comments on commit 4f58712

Please sign in to comment.