From 3ea216f888879e3a0a3beffa66e5132bdb4569e3 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Mon, 31 Mar 2008 11:58:35 +0200 Subject: build: fix configure option --with-static-libs=libXYZ This should not prevent building but linking of shared lib for subsystem XYZ (example --with-static-libs=libtdb). m4 quotation is tricky... Michael (This used to be commit 4d0a5d5c93ddab444a0097e1c56e4363574cb2b6) --- source3/m4/aclocal.m4 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3') diff --git a/source3/m4/aclocal.m4 b/source3/m4/aclocal.m4 index ef0abadefa..48cdacc9c8 100644 --- a/source3/m4/aclocal.m4 +++ b/source3/m4/aclocal.m4 @@ -100,7 +100,7 @@ build_lib=yes if eval test x"$build_lib" = "xyes" -a $BLDSHARED = true; then LIBUC[_SHARED]=$LIBUC[_SHARED_TARGET] AC_MSG_RESULT(yes) - if test x"$USESHARED" != x"true" -o x"$LINK_LIBUC" = "xSTATIC" ; then + if test x"$USESHARED" != x"true" -o x"$[LINK_]LIBUC" = "xSTATIC" ; then LIBUC[_STATIC]=$LIBUC[_STATIC_TARGET] else LIBUC[_LIBS]=LIBLIBS -- cgit