unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Suggested change to man/makefile.w32-in
@ 2004-10-24 19:45 Lennart Borgman
  2004-10-24 20:50 ` Jason Rumney
  0 siblings, 1 reply; 9+ messages in thread
From: Lennart Borgman @ 2004-10-24 19:45 UTC (permalink / raw)


There were one more problem with building info on w32 which I did not notice
first. It will currently only build when cmd.exe is the shell.

To get "make info" to work when MSYS is in the path (which makes "sh" the
shell for the makefile) the following change should be made to
"man/makefile.w32-in":

****Old:
info: $(INFO_TARGETS)
ifeq "$(SHELLTYPE)" "CMD"
 $(MULTI_INSTALL_INFO) --info-dir=$(infodir) $(INFO_TARGETS)

****New:
info: $(INFO_TARGETS)
ifeq "$(SHELLTYPE)" "CMD"
 $(MULTI_INSTALL_INFO) --info-dir=$(infodir) $(INFO_TARGETS)
else
 for file in $(INFO_TARGETS); do install-info --info-dir=$(infodir)
$${file}; done
endif

After this change (and with makeinfo from MSYS replaced with makeinfo from
http://gnuwin32.sourceforge.net/) "make info" will build ok.

Could this change be accepted? (I have not checked in any change.)


- Lennart

^ permalink raw reply	[flat|nested] 9+ messages in thread

end of thread, other threads:[~2004-10-27 17:59 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2004-10-24 19:45 Suggested change to man/makefile.w32-in Lennart Borgman
2004-10-24 20:50 ` Jason Rumney
2004-10-24 23:32   ` Lennart Borgman
2004-10-25  8:04     ` Jason Rumney
2004-10-25  9:06       ` Kim F. Storm
2004-10-25 15:54         ` Lennart Borgman
2004-10-25 19:06       ` Lennart Borgman
2004-10-25 19:51         ` Jason Rumney
2004-10-27 17:59           ` Lennart Borgman

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).