diff options
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index dfdcfe0cabf..ea965e282f3 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,7 +21,8 @@ AUTOMAKE_OPTIONS = foreign # These are built from source in the Docs directory EXTRA_DIST = INSTALL-SOURCE README \ COPYING COPYING.LIB -SUBDIRS = . include @docs_dirs@ @readline_dir@ \ +SUBDIRS = . include @docs_dirs@ \ + @readline_topdir@ @readline_dir@ \ @thread_dirs@ pstack @sql_client_dirs@ \ @sql_server_dirs@ scripts man tests \ BUILD netware os2 @libmysqld_dirs@ \ @@ -75,6 +76,10 @@ init-db: all bin-dist: all $(top_builddir)/scripts/make_binary_distribution +# Remove BK's "SCCS" subdirectories from source distribution +dist-hook: + rm -rf `find $(distdir) -type d -name SCCS` + tags: support-files/build-tags .PHONY: init-db bin-dist |