diff options
author | unknown <serg@serg.mylan> | 2004-08-23 13:55:40 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-08-23 13:55:40 +0200 |
commit | e68adb74fe622386f6aedba3509bda2d2478fe80 (patch) | |
tree | 90f20aaf959c3c8ca8715858972e36d667108b8c /bdb | |
parent | 3ae5c352a5cb3e04eea38c6cf8cee68fc23f98b5 (diff) | |
download | mariadb-git-e68adb74fe622386f6aedba3509bda2d2478fe80.tar.gz |
bdb bugfix: LTLIBOBJS didn't take --disable-shared into account
fix for bdb not ending up into libmysqld.a
bdb/dist/configure.ac:
bdb bugfix: LTLIBOBJS didn't take --disable-shared into account
configure.in:
build bdb with --disable-shared for libdb.a to go into libmysqld.a
libmysqld/examples/Makefile.am:
incorrect "bugfix" undone. bdb should be in libmysqld.a
Diffstat (limited to 'bdb')
-rw-r--r-- | bdb/dist/configure.ac | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bdb/dist/configure.ac b/bdb/dist/configure.ac index a61b8595322..98cf0f63b39 100644 --- a/bdb/dist/configure.ac +++ b/bdb/dist/configure.ac @@ -555,7 +555,7 @@ fi LIB@&t@OBJS=`echo "$LIB@&t@OBJS" | sed 's,\.[[^.]]* ,$U&,g;s,\.[[^.]]*$,$U&,'` LTLIBOBJS=`echo "$LIB@&t@OBJS" | - sed 's,\.[[^.]]* ,.lo ,g;s,\.[[^.]]*$,.lo,'` + sed "s,\.[[^.]]* ,$o ,g;s,\.[[^.]]*$,$o,"` AC_SUBST(LTLIBOBJS) # Initial output file list. |