1
0
mirror of https://codeberg.org/cage/tinmop/ synced 2025-06-05 01:09:17 +02:00

- removed bash as dependency (thanks op!);

- made quick_quicklisp.sh executable.
This commit is contained in:
cage
2022-02-18 19:06:09 +01:00
parent faaa26a5c9
commit 9070a72a64
4 changed files with 40 additions and 44 deletions

View File

@@ -73,13 +73,6 @@ if test "$MAN" = "no" ; then
AC_MSG_WARN([Can not find man.])
fi
AC_PATH_PROG([BASH],[bash],[no])
if test "$BASH" = "no" ; then
AC_MSG_ERROR([Can not find bash shell.])
exit 1;
fi
dnl autoconf has an automatic test for AWK
if test -z "${AWK}"; then
AC_MSG_ERROR([Can not find AWK.])
@@ -107,6 +100,13 @@ if test "$GIT" = "no" ; then
exit 1;
fi
AC_PATH_PROGS([CHMOD],[chmod],[no])
if test "$CHMOD" = "no" ; then
AC_MSG_ERROR([Can not find chmod executable.])
exit 1;
fi
AC_PROG_MKDIR_P
dnl check sbcl version
@@ -140,3 +140,5 @@ AC_CHECK_LIB([sqlite3], [sqlite3_libversion], [], AC_MSG_ERROR([Can not find lib
AC_CONFIG_FILES([Makefile quick_quicklisp.sh po/Makefile.in src/config.lisp.in])
AC_OUTPUT
${CHMOD} 750 quick_quicklisp.sh