diff options
author | Michael Adam <obnox@samba.org> | 2008-02-12 14:43:20 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-02-13 09:25:31 +0100 |
commit | 79a3ed88cca77a0c5b5f245d039e5b454545bfe4 (patch) | |
tree | 4fc717f5ed2a4778e8d5f72d7bcde588a256e955 | |
parent | ea22f7549341da1cadce269b9036753ad5567ca8 (diff) | |
download | samba-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)
-rw-r--r-- | source3/configure.in | 3 |
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 |