summaryrefslogtreecommitdiff
path: root/source3/configure.in
diff options
context:
space:
mode:
authorMichael Adam <obnox@samba.org>2008-02-12 14:43:20 +0100
committerMichael Adam <obnox@samba.org>2008-02-13 09:25:31 +0100
commit79a3ed88cca77a0c5b5f245d039e5b454545bfe4 (patch)
tree4fc717f5ed2a4778e8d5f72d7bcde588a256e955 /source3/configure.in
parentea22f7549341da1cadce269b9036753ad5567ca8 (diff)
downloadsamba-79a3ed88cca77a0c5b5f245d039e5b454545bfe4.tar.gz
samba-79a3ed88cca77a0c5b5f245d039e5b454545bfe4.tar.bz2
samba-79a3ed88cca77a0c5b5f245d039e5b454545bfe4.zip
Simplify code by moving duplicate assignment to common place.
Michael (This used to be commit dddfdee90ee30d225e08d7f1685409f62fabf7c1)
Diffstat (limited to 'source3/configure.in')
-rw-r--r--source3/configure.in3
1 files changed, 1 insertions, 2 deletions
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