diff options
author | unknown <monty@tik.mysql.fi> | 2001-08-29 09:13:29 +0300 |
---|---|---|
committer | unknown <monty@tik.mysql.fi> | 2001-08-29 09:13:29 +0300 |
commit | 4f1aaf457a11269eacb34f566c977d96348e16c3 (patch) | |
tree | 0251477ac14d64cd5bd1ba9e61b879cd7ce8ac60 /libmysql/Makefile.shared | |
parent | 558ae81fb1ab1bf2e190df027f6dda9ec5df97f4 (diff) | |
download | mariadb-git-4f1aaf457a11269eacb34f566c977d96348e16c3.tar.gz |
Fix to be able to configure without --with-tools
Diffstat (limited to 'libmysql/Makefile.shared')
-rw-r--r-- | libmysql/Makefile.shared | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/libmysql/Makefile.shared b/libmysql/Makefile.shared index ba97c7cf04d..afc6d561ce3 100644 --- a/libmysql/Makefile.shared +++ b/libmysql/Makefile.shared @@ -56,7 +56,14 @@ mysysobjects1 = my_init.lo my_static.lo my_malloc.lo my_realloc.lo \ thr_mutex.lo mulalloc.lo string.lo default.lo \ my_compress.lo array.lo my_once.lo list.lo my_net.lo \ charset.lo hash.lo mf_iocache.lo my_seek.lo \ - my_pread.lo mf_cache.lo + my_pread.lo mf_cache.lo my_vsnprintf.lo + +link_sources: + for f in $(mysys_src); do \ + rm -f $$f; \ + @LN_CP_F@ ../mysys/$$f $$f; \ + done; + # Not needed in the minimum library mysysobjects2 = getopt.lo getopt1.lo getvar.lo my_lib.lo mysysobjects = $(mysysobjects1) $(mysysobjects2) |