diff options
author | unknown <lenz@mysql.com> | 2003-02-03 11:32:29 +0100 |
---|---|---|
committer | unknown <lenz@mysql.com> | 2003-02-03 11:32:29 +0100 |
commit | a598cfbfc3686dce4c62ed0d9bc49a97b0cc3b95 (patch) | |
tree | 222d2e5fc6f28bcc4928ad115241fdf9f25551cc | |
parent | b58dd39b9923cfe0bb30cdc3d1c533ea1976c278 (diff) | |
download | mariadb-git-a598cfbfc3686dce4c62ed0d9bc49a97b0cc3b95.tar.gz |
- added missing files/directories from bdb and libedit to source distribution
- make sure to not included BK's "SCCS" directories in source distribution
Makefile.am:
- make sure to not include BKs "SCCS" directories in the source distribution
bdb/Makefile.in:
- added missing subdirectories to source distribution
cmd-line-utils/libedit/Makefile.am:
- added missing files to source distribution
-rw-r--r-- | Makefile.am | 4 | ||||
-rw-r--r-- | bdb/Makefile.in | 13 | ||||
-rw-r--r-- | cmd-line-utils/libedit/Makefile.am | 4 |
3 files changed, 14 insertions, 7 deletions
diff --git a/Makefile.am b/Makefile.am index 087052a309e..d97b28bf07d 100644 --- a/Makefile.am +++ b/Makefile.am @@ -75,6 +75,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 diff --git a/bdb/Makefile.in b/bdb/Makefile.in index 92c5b6ff54e..c83d40ac8b2 100644 --- a/bdb/Makefile.in +++ b/bdb/Makefile.in @@ -24,12 +24,13 @@ top_srcdir = @top_srcdir@ bdb_build = build_unix files = LICENSE Makefile Makefile.in README -subdirs = btree build_vxworks build_win32 clib common cxx db db185 \ - db_archive db_checkpoint db_deadlock db_dump db_dump185 db_load \ - db_printlog db_recover db_stat db_upgrade db_verify dbm dist \ - env examples_c examples_cxx hash hsearch include java libdb_java \ - lock log mp mutex os os_vxworks os_win32 perl.BerkeleyDB \ - perl.DB_File qam rpc_client rpc_server tcl test txn xa +subdirs = btree build_vxworks build_win32 clib common cxx db dbinc \ + dbinc_auto db185 db_archive db_checkpoint db_deadlock db_dump \ + db_dump185 db_load db_printlog db_recover db_stat db_upgrade \ + db_verify dbm dbreg dist env examples_c examples_cxx fileops hash \ + hsearch hmac include java libdb_java lock log mp mutex os os_vxworks \ + os_win32 perl.BerkeleyDB perl.DB_File qam rep rpc_client rpc_server tcl \ + test txn xa @SET_MAKE@ diff --git a/cmd-line-utils/libedit/Makefile.am b/cmd-line-utils/libedit/Makefile.am index 4c8d055df06..631c61ff350 100644 --- a/cmd-line-utils/libedit/Makefile.am +++ b/cmd-line-utils/libedit/Makefile.am @@ -20,10 +20,12 @@ pkginclude_HEADERS = readline/readline.h noinst_HEADERS = chared.h el.h histedit.h key.h \ parse.h refresh.h sig.h sys.h \ - tokenizer.h compat.h fgetln.h \ + tokenizer.h compat.h compat_conf.h fgetln.h \ hist.h map.h prompt.h search.h \ strlcpy.h term.h tty.h +EXTRA_DIST = makelist + DEFS = -DUNDEF_THREADS_HACK -DHAVE_CONFIG_H -DNO_KILL_INTR vi.h: vi.c makelist |