[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v1 04/18] website: configure.ac: always check for cat.
From: |
Denis 'GNUtoo' Carikli |
Subject: |
[PATCH v1 04/18] website: configure.ac: always check for cat. |
Date: |
Sun, 13 Oct 2024 17:13:09 +0200 |
In the Makefile we have the following:
pages/footer.include: pages/footer.include.tmpl
pages/footer-git-commit.include
cat \
[...]
This rule is valid reguardless of the '--without-guix' configure
option, so we need to also check if cat is present when using guix to
build the website.
Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
---
website/configure.ac | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/website/configure.ac b/website/configure.ac
index 788dc5f..054e59d 100644
--- a/website/configure.ac
+++ b/website/configure.ac
@@ -86,6 +86,10 @@ AC_CHECK_PROG([FOUND_AWK], [awk], [awk])
AS_IF([test x"$FOUND_AWK" = x""],
[AC_MSG_ERROR([awk was not found in PATH ($PATH)])])
+AC_CHECK_PROG([FOUND_CAT], [cat], [cat])
+AS_IF([test x"$FOUND_CAT" = x""],
+ [AC_MSG_ERROR([cat was not found in PATH ($PATH)])])
+
AC_CHECK_PROG([FOUND_PRINTF], [printf], [printf])
AS_IF([test x"$FOUND_PRINTF" = x""],
[AC_MSG_ERROR([printf was not found in PATH ($PATH)])])
@@ -112,12 +116,7 @@ AS_IF([test x"$guix" = x"yes"],
[AC_MSG_ERROR(
[guix was not found in PATH ($PATH)])])],
- [AC_CHECK_PROG([FOUND_CAT], [cat], [cat])
- AS_IF([test x"$FOUND_CAT" = x""],
- [AC_MSG_ERROR(
- [cat was not found in PATH ($PATH)])])
-
- AC_CHECK_PROG([FOUND_CP], [cp], [cp])
+ [AC_CHECK_PROG([FOUND_CP], [cp], [cp])
AS_IF([test x"$FOUND_CP" = x""],
[AC_MSG_ERROR(
[cp was not found in PATH ($PATH)])])
--
2.46.0
- [PATCH v1 00/18] More website patches, Denis 'GNUtoo' Carikli, 2024/10/13
- [PATCH v1 04/18] website: configure.ac: always check for cat.,
Denis 'GNUtoo' Carikli <=
- [PATCH v1 02/18] website: configure.ac: always check for rm., Denis 'GNUtoo' Carikli, 2024/10/13
- [PATCH v1 06/18] website: properly handle the dot dependency., Denis 'GNUtoo' Carikli, 2024/10/13
- [PATCH v1 05/18] website: configure.ac: always check for mkdir., Denis 'GNUtoo' Carikli, 2024/10/13
- [PATCH v1 08/18] website: review BSD page index and convert to GNU Boot point of view., Denis 'GNUtoo' Carikli, 2024/10/13
- [PATCH v1 10/18] website: review NetBSD page index and convert to GNU Boot point of view., Denis 'GNUtoo' Carikli, 2024/10/13
- [PATCH v1 01/18] website: configure.ac: check for sed., Denis 'GNUtoo' Carikli, 2024/10/13
- [PATCH v1 03/18] website: configure.ac: always check for printf., Denis 'GNUtoo' Carikli, 2024/10/13
- [PATCH v1 13/18] website: misc: codenames: review and add GNU Boot context., Denis 'GNUtoo' Carikli, 2024/10/13
- [PATCH v1 07/18] website: remove history/git-history.jpg, Denis 'GNUtoo' Carikli, 2024/10/13
- [PATCH v1 09/18] website: review OpenBSD page index and convert to GNU Boot point of view., Denis 'GNUtoo' Carikli, 2024/10/13