summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorkonstantin@mysql.com <>2004-07-27 21:59:28 -0700
committerkonstantin@mysql.com <>2004-07-27 21:59:28 -0700
commit674bbf0825b4cc9262defd8007df1d0c30740477 (patch)
tree92f91bc3ba1f5586d3406b2b911b998506551a84 /tools
parentf6f1e1f47b9025ddff47640fc950833131588c8a (diff)
downloadmariadb-git-674bbf0825b4cc9262defd8007df1d0c30740477.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)