summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorunknown <konstantin@mysql.com>2004-07-27 21:59:28 -0700
committerunknown <konstantin@mysql.com>2004-07-27 21:59:28 -0700
commit1fd322a15b8e9f875b9cc5fc4487f6293dfd5072 (patch)
tree92f91bc3ba1f5586d3406b2b911b998506551a84 /tools
parent788178e3b22c964bb84e0535d78a45accbb283ea (diff)
downloadmariadb-git-1fd322a15b8e9f875b9cc5fc4487f6293dfd5072.tar.gz
Order of libs is important when building an optimized library: put ZLIB last
in the list.
Diffstat (limited to 'tools')
-rw-r--r--tools/Makefile.am4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/Makefile.am b/tools/Makefile.am
index 0dc90a0d107..5528df4dd68 100644
--- a/tools/Makefile.am
+++ b/tools/Makefile.am
@@ -16,8 +16,8 @@
# Process this file with automake to create Makefile.in
INCLUDES=@MT_INCLUDES@ -I$(top_srcdir)/include $(openssl_includes)
-LDADD= @CLIENT_EXTRA_LDFLAGS@ @openssl_libs@ @ZLIB_LIBS@ \
- $(top_builddir)/libmysql_r/libmysqlclient_r.la
+LDADD= @CLIENT_EXTRA_LDFLAGS@ @openssl_libs@ \
+ $(top_builddir)/libmysql_r/libmysqlclient_r.la @ZLIB_LIBS@
bin_PROGRAMS= mysqlmanager
mysqlmanager_SOURCES= mysqlmanager.c
mysqlmanager_DEPENDENCIES= $(LIBRARIES) $(pkglib_LTLIBRARIES)