diff options
author | unknown <guilhem@gbichot3.local> | 2006-11-13 16:54:47 +0100 |
---|---|---|
committer | unknown <guilhem@gbichot3.local> | 2006-11-13 16:54:47 +0100 |
commit | 2ae92c6cd2faf3a137467d0206036c740c51afb8 (patch) | |
tree | 6668017b70c57915614309b1259e4f2503f6db3d /client/Makefile.am | |
parent | d6907923a188417f3542e15994aba2d01bbab363 (diff) | |
download | mariadb-git-2ae92c6cd2faf3a137467d0206036c740c51afb8.tar.gz |
Fix for a compilation failure: mysqladmin_SOURCES is a needed line
in Makefile.am.
client/Makefile.am:
by default, if there is no _SOURCES line, it is assumed that the source
is a .c file. So for mysqladmin, we really need the _SOURCES line.
Diffstat (limited to 'client/Makefile.am')
-rw-r--r-- | client/Makefile.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/client/Makefile.am b/client/Makefile.am index 48dc68ff704..736c4db005d 100644 --- a/client/Makefile.am +++ b/client/Makefile.am @@ -58,6 +58,7 @@ mysql_SOURCES = mysql.cc readline.cc sql_string.cc \ completion_hash.cc mysql_LDADD = @readline_link@ @TERMCAP_LIB@ \ $(LDADD) $(CXXLDFLAGS) +mysqladmin_SOURCES = mysqladmin.cc mysqlbinlog_SOURCES = mysqlbinlog.cc \ $(top_srcdir)/mysys/mf_tempdir.c \ |