mirror of
https://gitlab.com/embeddable-common-lisp/ecl.git
synced 2026-01-09 18:52:55 -08:00
- Use (si:quit) instead of (quit) when calling ecl -eval ...
This commit is contained in:
parent
c882e22bdc
commit
4ba7f04d5d
1 changed files with 3 additions and 3 deletions
6
src/aclocal.m4
vendored
6
src/aclocal.m4
vendored
|
|
@ -89,12 +89,12 @@ EOF
|
|||
if test "${ECL_TO_RUN}" = "failed"; then
|
||||
AC_MSG_ERROR(The program ECL is not installed in your system)
|
||||
fi
|
||||
ECL_MIN_TO_RUN=`${ECL_TO_RUN} -eval '(progn (print (truename "sys:ecl_min")) (quit))' \
|
||||
ECL_MIN_TO_RUN=`${ECL_TO_RUN} -eval '(progn (print (truename "sys:ecl_min")) (si:quit))' \
|
||||
| grep '\#\P' | sed 's,#P"\(.*\)",\1,'`
|
||||
if test -z "${ECL_MIN_TO_RUN}" -o "${ECL_MIN_TO_RUN}" = "failed" ; then
|
||||
AC_MSG_ERROR(The program ECL-MIN is not installed in your system)
|
||||
fi
|
||||
DPP_TO_RUN=`${ECL_TO_RUN} -eval '(progn (print (truename "sys:dpp")) (quit))' \
|
||||
DPP_TO_RUN=`${ECL_TO_RUN} -eval '(progn (print (truename "sys:dpp")) (si:quit))' \
|
||||
| grep '\#\P' | sed 's,#P"\(.*\)",\1,'`
|
||||
if test -z "${DPP_TO_RUN}" -o "${DPP_TO_RUN}" = "failed" ; then
|
||||
AC_MSG_ERROR(The program DPP is not installed in your system)
|
||||
|
|
@ -490,4 +490,4 @@ AC_MSG_CHECKING([C/C++ compiler flags])
|
|||
AC_MSG_RESULT([${CFLAGS}])
|
||||
AC_MSG_CHECKING([Linker flags])
|
||||
AC_MSG_RESULT([${LDFLAGS}])
|
||||
])
|
||||
])
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue