> Date: Tue, 11 Jun 2013 19:53:21 +0300 > From: Eli Zaretskii <e...@gnu.org> > Cc: l...@gnu.org, guile-user@gnu.org > > What eventually did the trick was configuring --with-threads=no. Once > I did that, the build ran successfully and almost 100% cleanly to > completion. (I will report the details about "almost" later.)
The second part of the details is about "make install": it failed because it looked for guild.exe and guile_tools.exe, which don't exist, because guild and guile_tools are shell scripts, not .exe programs. Fixed thusly: --- meta/Makefile.am~0 2013-03-25 23:24:24.000000000 +0200 +++ meta/Makefile.am 2013-06-12 14:26:47.032031800 +0300 @@ -30,9 +30,9 @@ # What we now call `guild' used to be known as `guile-tools'. install-exec-hook: guild="`echo $(ECHO_N) guild \ - | $(SED) -e '$(program_transform_name)'`$(EXEEXT)" ; \ + | $(SED) -e '$(program_transform_name)'`" ; \ guile_tools="`echo $(ECHO_N) guile-tools \ - | $(SED) -e '$(program_transform_name)'`$(EXEEXT)" ; \ + | $(SED) -e '$(program_transform_name)'`" ; \ cd $(DESTDIR)$(bindir) && rm -f "$$guile_tools" && \ $(LN_S) "$$guild" "$$guile_tools"