unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Broken lisp/Makefile.w32-in
@ 2002-07-31  6:59 Tak Ota
  2002-07-31  7:51 ` Juanma Barranquero
                   ` (2 more replies)
  0 siblings, 3 replies; 48+ messages in thread
From: Tak Ota @ 2002-07-31  6:59 UTC (permalink / raw)


revision 1.21 of lisp/Makefile.w32-in is broken for --with-msvc
configuration.  The change below is responsible for this.  Reverting
it to revision 1.20 removes the problem in "make bootstrap"

2002-07-23  Andrew Innes  <andrewi@gnu.org>

	* makefile.w32-in (DONTCOMPILE): Remove cus-start.el.
	(DONTCOMPILE): Add various language files.
	(DONTCOMPILE): Remove term/xterm.el.
	(finder-inf.el): Remove.
	(update-authors): New target.
	(TAGS-LISP): Remove $(lispsource).
	(compile-always): Renamed from `compile-files'.
	(compile): New target, adapted from `compile-files'.
	(compile-calc): New target.
	(recompile): Change `.' to $(lisp).
	(bootstrap): Add update-subdirs and finder-data
	to dependencies; change compile-files to compile.

The makefile.w32-in contains the following target in both revision
1.20 and 1.21 however nothing depends on this target in 1.20.  It
appears like 1.21 is supposed to have made improvement by properly
depending on this target.

update-subdirs-CMD: doit
	@set QWINS=
	@for %d in ($(WINS)) do if not (%d)==(term) set QWINS=%QWINS% "%d"
	echo ;; In load-path, after this directory should come> subdirs.el
	echo ;; certain of its subdirectories.  Here we specify them.>> subdirs.el
	echo (normal-top-level-add-to-load-path $(SQUOTE)(%QWINS%))>> subdirs.el

I suspect the use of an environment variable above is flawed since
each action line is executed by independent shell (cmd.exe) thus the
variable QWINS is not shared.  It should be corrected to something
like this.

update-subdirs-CMD: doit
	echo ;; In load-path, after this directory should come> subdirs.el
	echo ;; certain of its subdirectories.  Here we specify them.>> subdirs.el
	echo (normal-top-level-add-to-load-path $(SQUOTE)(>> subdirs.el
	@for %d in ($(WINS)) do if not (%d)==(term) echo "%d">> subdirs.el
	echo ))>> subdirs.el

However, the 2002-07-23 changes have more than this and still fails
after this modification.

-Tak

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

end of thread, other threads:[~2002-10-04  7:45 UTC | newest]

Thread overview: 48+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2002-07-31  6:59 Broken lisp/Makefile.w32-in Tak Ota
2002-07-31  7:51 ` Juanma Barranquero
2002-08-01 16:52   ` Richard Stallman
2002-08-01 17:14     ` Juanma Barranquero
2002-07-31  8:04 ` Juanma Barranquero
2002-08-30 12:14 ` Juanma Barranquero
2002-08-30 19:06   ` Eli Zaretskii
2002-08-30 23:47     ` Kim F. Storm
2002-08-31 23:24     ` Juanma Barranquero
2002-09-01  5:11       ` Eli Zaretskii
2002-09-01 21:10         ` Juanma Barranquero
2002-08-31 23:25     ` Juanma Barranquero
2002-09-01  5:15       ` Eli Zaretskii
2002-09-01 19:58         ` Juanma Barranquero
2002-09-01 16:59           ` Eli Zaretskii
2002-09-02  6:18             ` Juanma Barranquero
2002-09-02 16:20               ` Eli Zaretskii
2002-09-04 14:35             ` Juanma Barranquero
2002-09-05  5:08               ` Eli Zaretskii
2002-09-05  6:21                 ` Juanma Barranquero
2002-09-05 11:06                   ` Andreas Schwab
2002-09-05 14:57                   ` Eli Zaretskii
2002-09-05 17:06                     ` Juanma Barranquero
2002-09-06 10:47                 ` Juanma Barranquero
2002-09-18  6:43                   ` Eli Zaretskii
2002-09-20  8:26                     ` Juanma Barranquero
2002-09-20 21:23                       ` Eli Zaretskii
2002-09-22 17:24                         ` Juanma Barranquero
2002-09-22 13:23                           ` Eli Zaretskii
2002-09-24 16:46                             ` Juanma Barranquero
2002-09-24 18:03                               ` Stefan Monnier
2002-09-25  6:36                                 ` Juanma Barranquero
2002-09-25 14:30                                   ` Stefan Monnier
2002-09-30  7:02                                     ` Juanma Barranquero
2002-10-01  6:18                                       ` Richard Stallman
2002-10-01 14:42                                         ` Juanma Barranquero
2002-09-29  5:43                         ` Juanma Barranquero
2002-09-29 16:38                           ` Eli Zaretskii
2002-09-29 19:53                             ` Stefan Monnier
2002-09-30  2:06                               ` Juanma Barranquero
2002-09-30  1:56                             ` Juanma Barranquero
2002-09-30  4:39                               ` Eli Zaretskii
2002-09-29 18:44                           ` Richard Stallman
2002-10-01  5:58                             ` Juanma Barranquero
2002-10-01 13:38                               ` Richard Stallman
2002-10-04  7:45                                 ` Juanma Barranquero
2002-08-30 19:18   ` Richard Stallman
2002-08-31 23:25     ` Juanma Barranquero

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).