diff options
author | unknown <kent@mysql.com> | 2005-11-09 11:56:04 +0200 |
---|---|---|
committer | unknown <kent@mysql.com> | 2005-11-09 11:56:04 +0200 |
commit | 0bf5fa03c77e1fca3fa97672b1c987a2771945ed (patch) | |
tree | b788fd07a25a830fe3e0eee239517ef73ada1008 /Docs | |
parent | 233c6b797ff6c124ba52ae4562bf7e95f86ea301 (diff) | |
download | mariadb-git-0bf5fa03c77e1fca3fa97672b1c987a2771945ed.tar.gz |
Additional "make distcheck" changes specific to 5.0
configure.in:
Removed duplicate "tools/Makefile", and unused AVAILABLE_LANGUAGES_ERRORS
Docs/Makefile.am:
Add generated files to explicitly be removed on "make distclean"
extra/Makefile.am:
Added empty SUBDIRS, else automake 1.6.3 will not
put out code for DIST_SUBDIRS handling
extra/yassl/Makefile.am:
"make distcheck" fails on normal wildcards, seem to work with $(wildcard foo*) type
extra/yassl/src/Makefile.am:
"make distcheck" fails on normal wildcards, seem to work with $(wildcard foo*) type
extra/yassl/taocrypt/src/Makefile.am:
"make distcheck" fails on normal wildcards, seem to work with $(wildcard foo*) type
sql/share/Makefile.am:
Added distclean target for "*/errmsg.sys"
client/Makefile.am:
Put links into current directory, not \$(srcdir)
Diffstat (limited to 'Docs')
-rw-r--r-- | Docs/Makefile.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Docs/Makefile.am b/Docs/Makefile.am index 685eaeef7d1..542c82d8f58 100644 --- a/Docs/Makefile.am +++ b/Docs/Makefile.am @@ -33,6 +33,11 @@ install-data-hook: mysql.info uninstall-local: @RM@ -f $(DESTDIR)$(infodir)/mysql.info +# Problems with "make distclean", works differently for make files +# generated by different versions of the automake. Some require the +# generated files explicitly in DISTCLEANFILES. +DISTCLEANFILES = $(TXT_FILES) + # This target is not used in builds, just for convinience CLEAN_FILES: $(TXT_FILES) touch $(TXT_FILES) |