diff options
author | Michael Adam <obnox@samba.org> | 2008-02-14 00:31:37 +0100 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-02-14 14:15:23 +0100 |
commit | 879b32806df9304b46fc311073e623295ecbb974 (patch) | |
tree | f3677af53132ad8de092b04fddb7afe7029b15fa | |
parent | ff85aec1937692c9aa62855bdc2f35df0db6d890 (diff) | |
download | samba-879b32806df9304b46fc311073e623295ecbb974.tar.gz samba-879b32806df9304b46fc311073e623295ecbb974.tar.bz2 samba-879b32806df9304b46fc311073e623295ecbb974.zip |
Fix a typo.
This had no negative side effect since currently TALLOC_OBJ
only consists of one object.
Michael
(This used to be commit 9cf3be852024f05a73bf23fe5df6264e5252889b)
-rw-r--r-- | source3/configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 25f52e484a..70d573c7a2 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -276,7 +276,7 @@ m4_include(lib/talloc/libtalloc.m4) TALLOC_OBJS="" for obj in ${TALLOC_OBJ}; do - TALLOC_OBJS="${TALLOCOBJS} ${tallocdir}/${obj}" + TALLOC_OBJS="${TALLOC_OBJS} ${tallocdir}/${obj}" done AC_SUBST(TALLOC_OBJS) |