1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

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
This commit is contained in:
unknown
2007-03-27 23:56:48 +02:00
parent 094db7029e
commit c2d2ede33c
11 changed files with 39 additions and 68 deletions

View File

@ -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