diff options
author | lenz@mysql.com <> | 2003-03-18 22:14:02 +0100 |
---|---|---|
committer | lenz@mysql.com <> | 2003-03-18 22:14:02 +0100 |
commit | 04071da35ac91d5d1b8a30a84b7da375ef303d83 (patch) | |
tree | 92beef04c0b6256679ee496d44e0187ab6809cb8 /libmysql/Makefile.am | |
parent | f39eb5787f91e2fd517c880ce6cfc3c94997d3f3 (diff) | |
download | mariadb-git-04071da35ac91d5d1b8a30a84b7da375ef303d83.tar.gz |
- renamed "rnd" to "my_rnd" as the name was too generic (and is an exported
symbol in libmysqlclient) (thanks to Dennis Haney for the initial patch)
- cleanup: removed client/password.c (not used at all) and
libmysql/password.c (should rather be a symlink to sql/password.c instead)
- applied HPUX11 portability fix for char_val declaration to sql/password.c
(taken from libmysql/password.c)
Diffstat (limited to 'libmysql/Makefile.am')
-rw-r--r-- | libmysql/Makefile.am | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/libmysql/Makefile.am b/libmysql/Makefile.am index fac544ba44d..c767771c93f 100644 --- a/libmysql/Makefile.am +++ b/libmysql/Makefile.am @@ -53,10 +53,6 @@ link_sources: rm -f $(srcdir)/$$f; \ @LN_CP_F@ ../strings/$$f $(srcdir)/$$f; \ done; \ - for f in $$qs; do \ - rm -f $(srcdir)/$$f; \ - @LN_CP_F@ $(srcdir)/../sql/$$f $(srcdir)/$$f; \ - done; \ for f in $$ds; do \ rm -f $(srcdir)/$$f; \ @LN_CP_F@ $(srcdir)/../dbug/$$f $(srcdir)/$$f; \ @@ -66,7 +62,9 @@ link_sources: @LN_CP_F@ $(srcdir)/../mysys/$$f $(srcdir)/$$f; \ done; \ rm -f $(srcdir)/net.c; \ - @LN_CP_F@ $(srcdir)/../sql/net_serv.cc $(srcdir)/net.c + @LN_CP_F@ $(srcdir)/../sql/net_serv.cc $(srcdir)/net.c ; \ + rm -f $(srcdir)/password.c; \ + @LN_CP_F@ $(srcdir)/../sql/password.c $(srcdir)/password.c # This part requires GNUmake # |