diff options
author | kent@mysql.com <> | 2006-04-14 15:34:04 +0200 |
---|---|---|
committer | kent@mysql.com <> | 2006-04-14 15:34:04 +0200 |
commit | e1926a14eab472a90172c9ba6c90988c3ac8362b (patch) | |
tree | 82763e38556aa2fa7b054cd2b927304c3b988860 /unittest | |
parent | 34842dd2955de6f1e88ccfa97eba3787f669ee98 (diff) | |
download | mariadb-git-e1926a14eab472a90172c9ba6c90988c3ac8362b.tar.gz |
Makefile.am:
Move -lmystrings after -ldbug, to define strmov() on HP-UX
Diffstat (limited to 'unittest')
-rw-r--r-- | unittest/mysys/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/unittest/mysys/Makefile.am b/unittest/mysys/Makefile.am index 7cfc8175024..010a7845339 100644 --- a/unittest/mysys/Makefile.am +++ b/unittest/mysys/Makefile.am @@ -5,7 +5,7 @@ AM_CPPFLAGS += -I$(top_srcdir)/include -I$(top_srcdir)/unittest/mytap AM_LDFLAGS = -L$(top_builddir)/unittest/mytap -L$(top_builddir)/mysys AM_LDFLAGS += -L$(top_builddir)/strings -L$(top_builddir)/dbug -LDADD = -lmytap -lmysys -lmystrings -ldbug +LDADD = -lmytap -lmysys -ldbug -lmystrings noinst_PROGRAMS = bitmap.t base64.t |