From 6faca2928171d99877c5ebcb72fe2e59f1d34ac3 Mon Sep 17 00:00:00 2001 From: vraatikka Date: Sun, 4 Aug 2013 23:01:36 +0300 Subject: [PATCH] Added commands: THIS=`pwd` cd $(DEST) - `./maxkeys $(DEST)/MaxScale/etc/.secrets` cd $(THIS) to maxscale/server/core/Makefile Now .secrets is by default there and no complains in log. --- server/core/Makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/server/core/Makefile b/server/core/Makefile index 8fb068c78..e5d456500 100644 --- a/server/core/Makefile +++ b/server/core/Makefile @@ -103,6 +103,10 @@ depend: install: maxscale maxkeys maxpasswd @mkdir -p $(DEST)/bin install -D maxscale maxkeys maxpasswd $(DEST)/bin + THIS=`pwd` + cd $(DEST) + - `./maxkeys $(DEST)/MaxScale/etc/.secrets` + cd $(THIS) install -D $(MARIADB_SRC_PATH)/libmysqld/libmysqld.so.18 $(DEST)/lib include depend.mk