ifndef $(MARIADB_SRC_PATH) is not effective so changed to format ifndef MARIADB_SRC_PATH.

This commit is contained in:
vraatikka
2013-08-21 23:32:28 +03:00
parent 73ffa5a648
commit 3cd5d7162a

View File

@ -9,24 +9,24 @@
# #
# Set debug flags # Set debug flags
# #
DEBUG := Y DEBUG :=
# DEBUGGER := DEBUGGER :=
# DEBUGGER_PATH := DEBUGGER_PATH :=
# DEBUGGER_BIN := DEBUGGER_BIN :=
# #
# Set build env # Set build env
# #
UNIX := Y UNIX :=
# #
# Set path for root directory, that is, path to directory where # Set path for root directory, that is, path to directory where
# makefile.inc and build_gateway.inc are located. # makefile.inc and build_gateway.inc are located.
# ROOT_PATH is used in makefile. # ROOT_PATH is used in makefile.
# #
ROOT_PATH := /home/jan/skysql/maxscale ROOT_PATH := /home/jdoe/skysql/maxscale
# MARIADB_SRC_PATH may be defined either as an environment variable or # MARIADB_SRC_PATH may be defined either as an environment variable or
# specifically here # specifically here
ifndef $(MARIADB_SRC_PATH) ifndef MARIADB_SRC_PATH
MARIADB_SRC_PATH := /home/jan/mysql/5.5 MARIADB_SRC_PATH := /home/jdoe/mariadb/5.5
endif endif