diff options
author | serg@serg.mylan <> | 2006-04-12 14:08:24 +0200 |
---|---|---|
committer | serg@serg.mylan <> | 2006-04-12 14:08:24 +0200 |
commit | 70c2ff34f708de50c531f60e9f80102138ad9c6e (patch) | |
tree | 46aa796924bcff90935d9149ffb0d65ac7c6ae61 /Makefile.am | |
parent | 5eefa6ec1f57cdac17e454c8f2a71b8ebc129f00 (diff) | |
download | mariadb-git-70c2ff34f708de50c531f60e9f80102138ad9c6e.tar.gz |
fixes for 'make dist' and 'make distcheck'
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/Makefile.am b/Makefile.am index 3f17cbe797d..c9cffd79529 100644 --- a/Makefile.am +++ b/Makefile.am @@ -21,25 +21,17 @@ AUTOMAKE_OPTIONS = foreign # These are built from source in the Docs directory EXTRA_DIST = INSTALL-SOURCE INSTALL-WIN-SOURCE \ README COPYING EXCEPTIONS-CLIENT cmakelists.txt -SUBDIRS = . include @docs_dirs@ @zlib_dir@ @yassl_dir@ \ +SUBDIRS = . include @docs_dirs@ @zlib_dir@ \ @readline_topdir@ sql-common \ @thread_dirs@ pstack \ - @sql_union_dirs@ @mysql_se_dirs@ \ + @sql_union_dirs@ storage \ @sql_server@ scripts @man_dirs@ tests \ @mysql_se_plugins@ \ netware @libmysqld_dirs@ \ @bench_dirs@ support-files @tools_dirs@ \ plugin win -DIST_SUBDIRS = . include @docs_dirs@ zlib \ - @readline_topdir@ sql-common \ - @thread_dirs@ pstack \ - strings mysys dbug extra regex storage \ - vio sql libmysql_r libmysql client scripts \ - @man_dirs@ tests SSL\ - BUILD netware os2 @libmysqld_dirs@\ - @bench_dirs@ support-files server-tools tools \ - plugin win +DIST_SUBDIRS = $(SUBDIRS) SSL BUILD os2 # Run these targets before any others, also make part of clean target, # to make sure we create new links after a clean. @@ -100,9 +92,11 @@ dist-hook: rm -rf `find $(distdir) -type d -name SCCS -print` if echo "$(distdir)" | grep -q '^/' ; then \ scripts/mysql_install_db --no-defaults --windows \ + --basedir=$(top_srcdir) \ --datadir="$(distdir)/win/data"; \ else \ scripts/mysql_install_db --no-defaults --windows \ + --basedir=$(top_srcdir) \ --datadir="$$(pwd)/$(distdir)/win/data"; \ fi |