mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-12-21 15:19:34 -05:00
Fix typo in last commit.
This commit is contained in:
parent
417e2d59fc
commit
de7b2b5569
2 changed files with 2 additions and 2 deletions
2
configure
vendored
2
configure
vendored
|
|
@ -1816,7 +1816,7 @@ TLS_LIBS=
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
if test "$host_os" != "cygwin" ;
|
if test "${host_os}" != "cygwin" ; then
|
||||||
CC=${CC-"cc"}
|
CC=${CC-"cc"}
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -312,7 +312,7 @@ dnl AC_PROG_INSTALL
|
||||||
dnl The default compiler is cc (NOT gcc)
|
dnl The default compiler is cc (NOT gcc)
|
||||||
dnl except on cygwin
|
dnl except on cygwin
|
||||||
dnl (should check to see if 'cc' exists instead)
|
dnl (should check to see if 'cc' exists instead)
|
||||||
if test "$host_os" != "cygwin" ;
|
if test "${host_os}" != "cygwin" ; then
|
||||||
CC=${CC-"cc"}
|
CC=${CC-"cc"}
|
||||||
fi
|
fi
|
||||||
dnl The default CFLAGS is empty NOT whatever AC_PROG_CC sets.
|
dnl The default CFLAGS is empty NOT whatever AC_PROG_CC sets.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue