From 79a3ed88cca77a0c5b5f245d039e5b454545bfe4 Mon Sep 17 00:00:00 2001 From: Michael Adam Date: Tue, 12 Feb 2008 14:43:20 +0100 Subject: Simplify code by moving duplicate assignment to common place. Michael (This used to be commit dddfdee90ee30d225e08d7f1685409f62fabf7c1) --- source3/configure.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'source3/configure.in') diff --git a/source3/configure.in b/source3/configure.in index eab8645b37..34fac655c4 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -5191,7 +5191,6 @@ samba_cv_with_libtalloc=yes if test x"$samba_cv_with_libtalloc" = "xyes" -a $BLDSHARED = true; then LIBTALLOC_SHARED=bin/libtalloc.$SHLIBEXT - LIBTALLOC=libtalloc AC_MSG_RESULT(yes) if test x"$LIB_TALLOC" = "xSTATIC" ; then LIBTALLOC_STATIC=bin/libtalloc.a @@ -5203,9 +5202,9 @@ else AC_MSG_RESULT(no shared library support -- will supply static library) fi if test $enable_static = yes; then - LIBTALLOC=libtalloc LIBTALLOC_STATIC=bin/libtalloc.a fi +LIBTALLOC=libtalloc INSTALL_LIBTALLOC=installlibtalloc UNINSTALL_LIBTALLOC=uninstalllibtalloc -- cgit