From d78596d85ffb59315be4f98a160da9798d502f89 Mon Sep 17 00:00:00 2001 From: unknown Date: Tue, 27 Mar 2007 23:56:48 +0200 Subject: 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 --- netware/Makefile.am | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to 'netware') 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 -- cgit v1.2.1