This commit is contained in:
Олег Бородин
2024-07-03 00:28:42 +02:00
parent ada2a49a64
commit 1cc8b577cd
13 changed files with 178 additions and 37 deletions

View File

@@ -16,7 +16,15 @@ if test -z "$CP"; then
AC_MSG_ERROR([Requested program cp not found])
fi
AC_PATH_PROGS([DBUILDPACKAGE],[dpkg-buildpackage true])
AC_PATH_PROGS([YARN],[yarn npm])
if test -z "$YARN"; then
AC_MSG_ERROR([Requested program yarn not found])
fi
AC_PATH_PROGS([NODE],[node])
if test -z "$NODE"; then
AC_MSG_ERROR([Requested program node not found])
fi
AC_PROG_INSTALL
@@ -252,5 +260,6 @@ Makefile
internal/config/path.go
initrc/hamloggerd.service
initrc/hamloggerd
front/Makefile
])
AC_OUTPUT