From 4ba7f04d5d147d32b30beec648484a4de98ddf0e Mon Sep 17 00:00:00 2001 From: japhie Date: Tue, 26 Jul 2005 23:06:29 +0000 Subject: [PATCH] - Use (si:quit) instead of (quit) when calling ecl -eval ... --- src/aclocal.m4 | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/aclocal.m4 b/src/aclocal.m4 index e1488736d..03c4ca4fe 100644 --- a/src/aclocal.m4 +++ b/src/aclocal.m4 @@ -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}]) -]) \ No newline at end of file +])