diff options
author | Dan Winship <danw@src.gnome.org> | 2001-08-14 22:59:17 +0800 |
---|---|---|
committer | Dan Winship <danw@src.gnome.org> | 2001-08-14 22:59:17 +0800 |
commit | 4b6f7546b80b48c24cda221f09235cd5ac53bfbd (patch) | |
tree | 57995bd77f26b0cc1f60e0a22939ecac35e7a70c | |
parent | c4d909a3661d41ecaf7cd1fb9ad0a98f70808296 (diff) | |
download | gsoc2013-evolution-4b6f7546b80b48c24cda221f09235cd5ac53bfbd.tar gsoc2013-evolution-4b6f7546b80b48c24cda221f09235cd5ac53bfbd.tar.gz gsoc2013-evolution-4b6f7546b80b48c24cda221f09235cd5ac53bfbd.tar.bz2 gsoc2013-evolution-4b6f7546b80b48c24cda221f09235cd5ac53bfbd.tar.lz gsoc2013-evolution-4b6f7546b80b48c24cda221f09235cd5ac53bfbd.tar.xz gsoc2013-evolution-4b6f7546b80b48c24cda221f09235cd5ac53bfbd.tar.zst gsoc2013-evolution-4b6f7546b80b48c24cda221f09235cd5ac53bfbd.zip |
Remove an obvious typo reported by Miles
* configure.in (LDAP_LIBS): Remove an obvious typo reported by
Miles
svn path=/trunk/; revision=12011
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | configure.in | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +2001-08-14 Dan Winship <danw@ximian.com> + + * configure.in (LDAP_LIBS): Remove an obvious typo reported by + Miles + 2001-08-11 Kjartan Maraas <kmaraas@gnome.org> * README: Be truthful about the versions of libs we need. diff --git a/configure.in b/configure.in index 8806029d88..a04c46897f 100644 --- a/configure.in +++ b/configure.in @@ -441,7 +441,7 @@ if test "$msg_ldap" = yes; then fi AC_CHECK_LIB(ldap, ldap_open, [ if test $msg_ldap_linktype = "(static)"; then - LDAP_LIBS="$with_openldap/lib/libldap.a $LDAP_LIBS", + LDAP_LIBS="$with_openldap/lib/libldap.a $LDAP_LIBS" else LDAP_LIBS="-lldap $LDAP_LIBS" fi], |