diff options
author | unknown <petr@mysql.com> | 2005-02-20 04:36:22 +0300 |
---|---|---|
committer | unknown <petr@mysql.com> | 2005-02-20 04:36:22 +0300 |
commit | da4604f9e8fa42c8e7c5627b692e0ac6d5409802 (patch) | |
tree | 498ed816cc0d5e8ebec07e298d66066d3e03e9bf /server-tools | |
parent | 3805001f7c1600b3c34a97478031e68b95cf9918 (diff) | |
download | mariadb-git-da4604f9e8fa42c8e7c5627b692e0ac6d5409802.tar.gz |
CPPFLAGS is substituted with CXXFLAGS to work with older automake. Serg, now you can enable
server-tools/instance-manager.
server-tools/instance-manager/Makefile.am:
The famous CPPFLAGS (aka "upgrade automake") thing was removed. Upon Brian's request.
Diffstat (limited to 'server-tools')
-rw-r--r-- | server-tools/instance-manager/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/server-tools/instance-manager/Makefile.am b/server-tools/instance-manager/Makefile.am index c9c9009a8ec..ebaccd194dd 100644 --- a/server-tools/instance-manager/Makefile.am +++ b/server-tools/instance-manager/Makefile.am @@ -25,7 +25,7 @@ DEFS= -DMYSQL_INSTANCE_MANAGER -DMYSQL_SERVER noinst_LIBRARIES= liboptions.a libnet.a -liboptions_a_CPPFLAGS= $(CPPFLAGS) \ +liboptions_a_CXXFLAGS= $(CXXFLAGS) \ -DDEFAULT_PID_FILE_NAME="$(localstatedir)/mysqlmanager.pid" \ -DDEFAULT_LOG_FILE_NAME="$(localstatedir)/mysqlmanager.log" \ -DDEFAULT_SOCKET_FILE_NAME="$(localstatedir)/mysqlmanager.sock" \ |