mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-02-24 07:40:40 -08:00
Fixed typo
This commit is contained in:
parent
7bebaea22d
commit
47b05be175
2 changed files with 3 additions and 4 deletions
5
src/configure
vendored
5
src/configure
vendored
|
|
@ -1541,7 +1541,7 @@ fi;
|
|||
# Check whether --with-system-gmp or --without-system-gmp was given.
|
||||
if test "${with_system_gmp+set}" = set; then
|
||||
withval="$with_system_gmp"
|
||||
system_gmp="${enableval}"
|
||||
system_gmp="${withval}"
|
||||
else
|
||||
system_gmp="${system_gmp:-no}"
|
||||
fi;
|
||||
|
|
@ -4588,7 +4588,7 @@ else
|
|||
echo "${ECHO_T}no" >&6
|
||||
fi
|
||||
|
||||
if which gzip; then
|
||||
if test -z `which gzip`; then
|
||||
INFOEXT=info.gz
|
||||
else
|
||||
INFOEXT=info
|
||||
|
|
@ -4631,7 +4631,6 @@ else
|
|||
LSP_LIBRARIES="${LIBPREFIX}ecl.${LIBEXT}"
|
||||
LDRPATH='~*'
|
||||
fi
|
||||
echo ${system_gmp}
|
||||
if test "${system_gmp}" = "yes" ; then
|
||||
CLIBS="-lgmp ${CLIBS}"
|
||||
else
|
||||
|
|
|
|||
|
|
@ -122,7 +122,7 @@ AC_ARG_WITH(system-boehm,
|
|||
AC_ARG_WITH(system-gmp,
|
||||
AS_HELP_STRING([--with-system-gmp],
|
||||
[use already installed GMP library (default=NO)]),
|
||||
[system_gmp="${enableval}"], [system_gmp="${system_gmp:-no}"])
|
||||
[system_gmp="${withval}"], [system_gmp="${system_gmp:-no}"])
|
||||
|
||||
### ----------------------------------------------------------------------
|
||||
### Checks for programs
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue