guile-user
[Top][All Lists]
Advanced

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

Re: guile 2.0.9 build on mingw


From: Eli Zaretskii
Subject: Re: guile 2.0.9 build on mingw
Date: Wed, 12 Jun 2013 20:59:19 +0300

> Date: Tue, 11 Jun 2013 19:53:21 +0300
> From: Eli Zaretskii <address@hidden>
> Cc: address@hidden, address@hidden
> 
> 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"
 



reply via email to

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