diff options
author | msvensson@pilot.blaudden <> | 2007-03-27 23:56:48 +0200 |
---|---|---|
committer | msvensson@pilot.blaudden <> | 2007-03-27 23:56:48 +0200 |
commit | b554258a8e453539d87a1a0a572b4d329b58d9eb (patch) | |
tree | 02a7e0d66c1854e1350626ab89132b36162066bd /netware | |
parent | 764d84852ef83c3584ca1e03bebd34b1b29d1f53 (diff) | |
download | mariadb-git-b554258a8e453539d87a1a0a572b4d329b58d9eb.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
Diffstat (limited to 'netware')
-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 |