diff options
author | unknown <msvensson@shellback.(none)> | 2006-09-20 09:28:12 +0200 |
---|---|---|
committer | unknown <msvensson@shellback.(none)> | 2006-09-20 09:28:12 +0200 |
commit | 892e3a4107ecb7adf80b4df90feb9cc3fa3de5ba (patch) | |
tree | f67632b1a99f385312e589b8d75c16ee10289546 /extra/Makefile.am | |
parent | e0243f8c5509aa471966d5ae183acd7d7cf612a3 (diff) | |
download | mariadb-git-892e3a4107ecb7adf80b4df90feb9cc3fa3de5ba.tar.gz |
Bug#19738 "make install" tries to build files that "make" should already have built
- Move comp_err to EXTRA_PROGRAMS, it will not be installed from 5.1 and up.
extra/Makefile.am:
Move comp_err to EXTRA_PROGRAMS, it will only be built if any of the files it prodcues need to be rebuilt
support-files/mysql.spec.sh:
Remove comp_err from files to install
Diffstat (limited to 'extra/Makefile.am')
-rw-r--r-- | extra/Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/extra/Makefile.am b/extra/Makefile.am index eed1f509631..81a6f5f5cb9 100644 --- a/extra/Makefile.am +++ b/extra/Makefile.am @@ -41,9 +41,10 @@ $(top_builddir)/include/mysqld_error.h: comp_err.c \ $(top_builddir)/include/mysqld_ername.h: $(top_builddir)/include/mysqld_error.h $(top_builddir)/include/sql_state.h: $(top_builddir)/include/mysqld_error.h -bin_PROGRAMS = replace comp_err perror resolveip my_print_defaults \ +bin_PROGRAMS = replace perror resolveip my_print_defaults \ resolve_stack_dump mysql_waitpid innochecksum noinst_PROGRAMS = charset2html +EXTRA_PROGRAMS = comp_err EXTRA_DIST = CMakeLists.txt perror.o: perror.c |