Skip to content
Snippets Groups Projects
Commit c0059674 authored by Kurt Zeilenga's avatar Kurt Zeilenga Committed by Kurt Zeilenga
Browse files

Indicate configure is running in a Git clone

parent 0b0415d8
No related branches found
No related tags found
No related merge requests found
......@@ -2872,12 +2872,14 @@ if test -t 1; then
TN="`$SHTOOL echo -e '%b' 2>/dev/null`"
fi
 
OPENLDAP_CVS=""
if test -d $ac_aux_dir/CVS; then
OPENLDAP_CVS="(from CVS sources) "
OPENLDAP_REPO=""
if test -d $ac_aux_dir/Git; then
OPENLDAP_REPO="(from Git clone) "
elif test -d $ac_aux_dir/CVS; then
OPENLDAP_REPO="(from CVS sources) "
fi
 
echo "Configuring ${TB}${OL_STRING}${TN} ${OPENLDAP_CVS}..."
echo "Configuring ${TB}${OL_STRING}${TN} ${OPENLDAP_REPO}..."
 
# Make sure we can run config.sub.
$SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 ||
......
......@@ -56,12 +56,14 @@ if test -t 1; then
TN="`$SHTOOL echo -e '%b' 2>/dev/null`"
fi
OPENLDAP_CVS=""
if test -d $ac_aux_dir/CVS; then
OPENLDAP_CVS="(from CVS sources) "
OPENLDAP_REPO=""
if test -d $ac_aux_dir/../.git; then
OPENLDAP_REPO="(from Git clone) "
elif test -d $ac_aux_dir/CVS; then
OPENLDAP_REPO="(from CVS checkout) "
fi
echo "Configuring ${TB}${OL_STRING}${TN} ${OPENLDAP_CVS}..."
echo "Configuring ${TB}${OL_STRING}${TN} ${OPENLDAP_REPO}..."
dnl Determine host platform
dnl we try not to use this for much
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment