diff options
author | unknown <kent@mysql.com> | 2006-04-14 15:34:04 +0200 |
---|---|---|
committer | unknown <kent@mysql.com> | 2006-04-14 15:34:04 +0200 |
commit | eb485ecedca811acb1be3a4fddac8818539fa412 (patch) | |
tree | 82763e38556aa2fa7b054cd2b927304c3b988860 /unittest/mysys | |
parent | 3d185d7935f6b70e43880488a2a7d4e16701d2e7 (diff) | |
download | mariadb-git-eb485ecedca811acb1be3a4fddac8818539fa412.tar.gz |
Makefile.am:
Move -lmystrings after -ldbug, to define strmov() on HP-UX
unittest/mysys/Makefile.am:
Move -lmystrings after -ldbug, to define strmov() on HP-UX
Diffstat (limited to 'unittest/mysys')
-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 |