gnuboot-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH v1 02/18] website: configure.ac: always check for rm.


From: Denis 'GNUtoo' Carikli
Subject: [PATCH v1 02/18] website: configure.ac: always check for rm.
Date: Sun, 13 Oct 2024 17:13:07 +0200

In the Makefile we have the following:
    pages/footer-git-commit.include:
        rm -f $@
        [...]

This rule is valid reguardless of the '--without-guix' configure
option, so we need to also check if rm is present when using guix to
build the website.

Signed-off-by: Denis 'GNUtoo' Carikli <GNUtoo@cyberdimension.org>
---
 website/configure.ac | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/website/configure.ac b/website/configure.ac
index 3883d3a..235cb04 100644
--- a/website/configure.ac
+++ b/website/configure.ac
@@ -90,6 +90,10 @@ AC_CHECK_PROG([FOUND_REALPATH], [realpath], [realpath])
 AS_IF([test x"$FOUND_REALPATH" = x""],
       [AC_MSG_ERROR([realpath was not found in PATH ($PATH)])])
 
+AC_CHECK_PROG([FOUND_RM], [rm], [rm])
+AS_IF([test x"$FOUND_RM" = x""],
+      [AC_MSG_ERROR([rm was not found in PATH ($PATH)])])
+
 AC_CHECK_PROG([FOUND_SED], [sed], [sed])
 AS_IF([test x"$FOUND_SED" = x""],
       [AC_MSG_ERROR([sed was not found in PATH ($PATH)])])
@@ -169,11 +173,6 @@ AS_IF([test x"$guix" = x"yes"],
              [AC_MSG_ERROR(
               [printf was not found in PATH ($PATH)])])
 
-       AC_CHECK_PROG([FOUND_RM], [rm], [rm])
-       AS_IF([test x"$FOUND_RM" = x""],
-             [AC_MSG_ERROR(
-              [rm was not found in PATH ($PATH)])])
-
        AC_CHECK_PROG([FOUND_TAIL], [tail], [tail])
        AS_IF([test x"$FOUND_TAIL" = x""],
              [AC_MSG_ERROR(
-- 
2.46.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]