Modify build_gateway.inc so that variables are used, thus avoiding a need for editing. Please review the file to see the variables that are used - they should be obvious.

This commit is contained in:
counterpoint
2014-08-20 17:22:32 +01:00
parent 65b25a825a
commit a853b72baf

View File

@ -12,7 +12,7 @@
# #
# Set debug flags # Set debug flags
# #
DEBUG := DEBUG := ${MAXSCALE_DEBUG}
# #
# Set build env # Set build env
@ -22,7 +22,7 @@ UNIX := Y
# #
# Set MaxScale branch directory # Set MaxScale branch directory
# #
ROOT_PATH := $(HOME)/src/bazaar/tmp/maxscale ROOT_PATH := $(HOME)/${MAXSCALE_SOURCE}
INC_PATH := $(HOME)/usr/include INC_PATH := $(HOME)/usr/include
# #
@ -38,7 +38,7 @@ MYSQL_HEADERS := -I$(INC_PATH) -I$(MYSQL_ROOT)/ -I$(MYSQL_ROOT)/private/ -I$(MYS
# #
# Set DYNLIB=Y if you want to link MaxScale with dynamic embedded lib # Set DYNLIB=Y if you want to link MaxScale with dynamic embedded lib
# #
DYNLIB := DYNLIB := ${MAXSCALE_DYNLIB}
# #
# Set path to Embedded MySQL Server # Set path to Embedded MySQL Server
@ -51,3 +51,4 @@ endif
# Set path to MySQL errors file # Set path to MySQL errors file
# #
ERRMSG := $(HOME)/usr/share/mysql ERRMSG := $(HOME)/usr/share/mysql