Werner LEMBERG <wl <at> gnu.org> writes:
>   configure:9636: checking for guile
>   configure:9666: result: no
>   configure:9636: checking for guile1
>   configure:9652: found /usr/bin/guile1
>   configure:9663: result: guile1
>   configure:9704: checking for guile
>   configure:9737: result: no
>   ...
> 
> The last two lines apparently overwrite the GUILE variable again.
> 
>     Werner
> 


This should do it:

diff --git a/stepmake/aclocal.m4 b/stepmake/aclocal.m4
index c8e62a9..f7f4579 100644
--- a/stepmake/aclocal.m4
+++ b/stepmake/aclocal.m4
@@ -928,7 +928,7 @@ AC_DEFUN(STEPMAKE_PATH_PROG, [
     AC_CHECK_PROGS($1, $2, no)
     STEPMAKE_OPTIONAL_REQUIRED($1, $2, $3)
     if test $? -eq 0; then
-       AC_PATH_PROG($1, $2)
+       AC_PATH_PROGS($1, $2)
        if test -n "$4"; then
            STEPMAKE_CHECK_VERSION($1, $3, $4)
        fi



_______________________________________________
lilypond-devel mailing list
lilypond-devel@gnu.org
https://lists.gnu.org/mailman/listinfo/lilypond-devel

Reply via email to