From a5564abf94f8951a8a3ce6fa51b5e2f26b617711 Mon Sep 17 00:00:00 2001 From: Rich Megginson Date: Thu, 12 Aug 2010 17:52:57 -0600 Subject: openldap ldapsearch uses -LLL to suppress # version: N mozldap uses -1 but openldap uses -LLL to suppress printing the in ldapsearch output - add a flag for this --- m4/mozldap.m4 | 2 ++ m4/openldap.m4 | 2 ++ 2 files changed, 4 insertions(+) (limited to 'm4') diff --git a/m4/mozldap.m4 b/m4/mozldap.m4 index c1744b49..23df0601 100644 --- a/m4/mozldap.m4 +++ b/m4/mozldap.m4 @@ -171,4 +171,6 @@ dnl default path for the ldap c sdk tools (see [210947] for more details) ldaptool_bindir=$ldapsdk_bindir # default options to pass to the tools ldaptool_opts= + # get plain output from ldapsearch - no version + plainldif_opts=-1 fi diff --git a/m4/openldap.m4 b/m4/openldap.m4 index c9a3a1e5..7fdb979a 100644 --- a/m4/openldap.m4 +++ b/m4/openldap.m4 @@ -151,4 +151,6 @@ if test "$with_openldap" = yes ; then # default options to pass to the tools # use -x because all of our scripts use simple bind ldaptool_opts=-x + # get plain output from ldapsearch - no version, no comments + plainldif_opts=-LLL fi -- cgit