civodul pushed a commit to branch master
in repository shepherd.

commit e4a4dfc5a04cee4710e701b79dac48b6b82ba40c
Author: Ludovic Courtès <l...@gnu.org>
Date:   Wed Jul 11 23:09:47 2018 +0200

    build: Make forbidden pattern stricter.
    
    Somehow, with Guile 2.2.4, we were now getting:
    
      configure:6899: error: possibly undefined macro: GUILE_PKG_ERRORS
    
    * configure.ac: Make forbidden pattern stricter.
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/configure.ac b/configure.ac
index 9d8c2aa..a5e2d21 100644
--- a/configure.ac
+++ b/configure.ac
@@ -21,7 +21,7 @@ AC_PROG_MKDIR_P
 AC_PROG_SED
 
 dnl Check for Guile 2.x.
-m4_pattern_forbid([^GUILE_PKG])
+m4_pattern_forbid([^GUILE_PKG$])
 GUILE_PKG([2.2 2.0])
 
 dnl Checks for programs.

Reply via email to