diff options
author | unknown <msvensson@pilot.blaudden> | 2007-03-27 23:56:48 +0200 |
---|---|---|
committer | unknown <msvensson@pilot.blaudden> | 2007-03-27 23:56:48 +0200 |
commit | c2d2ede33c4c67258676f26f7030ee3d79be5ef2 (patch) | |
tree | 02a7e0d66c1854e1350626ab89132b36162066bd /netware/Makefile.am | |
parent | 094db7029ea92e7dc6c0731e5e6f19285f415536 (diff) | |
download | mariadb-git-c2d2ede33c4c67258676f26f7030ee3d79be5ef2.tar.gz |
Bug#22508 BUILD/compile-dist fails due to problem with readline/libedit
- Move the link_sources command from top level Makefile into each subdir
that need to link files
BitKeeper/etc/ignore:
Added libmysqld/link_sources libmysql/link_sources include/link_sources client/link_sources to the ignore list
Makefile.am:
Move link_sources down into each sub directory that might need it
client/Makefile.am:
Add "link_sources" to BUILT_SOURCES
configure.in:
Move link_sources down into each sub directory that might need it
include/Makefile.am:
Add "link_sources" to BUILT_SOURCES
libmysql/Makefile.am:
Add "link_sources" to BUILT_SOURCES
libmysql/Makefile.shared:
Add "link_sources" to BUILT_SOURCES
libmysqld/Makefile.am:
Add "link_sources" to BUILT_SOURCES
libmysqld/examples/Makefile.am:
Add "link_sources" to BUILT_SOURCES
netware/Makefile.am:
Add "link_sources" to BUILT_SOURCES
sql/Makefile.am:
Add "link_sources" to BUILT_SOURCES
Diffstat (limited to 'netware/Makefile.am')
-rw-r--r-- | netware/Makefile.am | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/netware/Makefile.am b/netware/Makefile.am index f68e8476156..0b62a90073e 100644 --- a/netware/Makefile.am +++ b/netware/Makefile.am @@ -44,16 +44,20 @@ netware_build_files = client/mysql.def client/mysqladmin.def \ storage/myisam/myisam_ftdump.def link_sources: - set -x; \ for f in $(netware_build_files); do \ rm -f ../$$f; \ org=`echo $$f | sed -e 's/.*\/\(.*\)/\1/g'`; \ @LN_CP_F@ $(srcdir)/$$org ../$$f; \ done + echo timestamp > link_sources + +BUILT_SOURCES = link_sources +CLEANFILES = $(BUILT_SOURCES) + else BUILT_SOURCES = libmysql.imp -DISTCLEANFILES = $(BUILT_SOURCES) +CLEANFILES = $(BUILT_SOURCES) # Create the libmysql.imp from libmysql/libmysql.def libmysql.imp: $(top_srcdir)/libmysql/libmysql.def |