unofficial mirror of emacs-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Glenn Morris <rgm@gnu.org>
To: Juanma Barranquero <lekktu@gmail.com>
Cc: Eli Zaretskii <eliz@gnu.org>, emacs-devel@gnu.org
Subject: Re: ignoring autoloads in preloaded files on Windows
Date: Sat, 10 Oct 2009 22:36:43 -0400	[thread overview]
Message-ID: <24aazyzmf8.fsf@fencepost.gnu.org> (raw)
In-Reply-To: <f7ccd24b0910101902q37ffefddq79f4f5feb42766e2@mail.gmail.com> (Juanma Barranquero's message of "Sun, 11 Oct 2009 04:02:43 +0200")

Juanma Barranquero wrote:

> Using GNU make ("make.exe"), it generates lisp/loaddefs.el as
> expected, but lisp/calendar/*-loaddefs.el and lisp/mh-e/mh-loaddefs.el
> are empty (just the header and the end sections are present).

Oh, whoops. Revised patch for lisp/makefile.w32-in follows.

I'm doing it this way because:

i) I have no idea how to quote a setting of autoload-make-program
inside the --eval expression on Windows.

ii) Since $(MAKE) could be a full path to make, I can only presume it
could be subject to the same munging issue as described for
generated-autoload-file in the doc of w32-batch-update.


*** lisp/makefile.w32-in.~1.99.~	2009-10-08 23:28:21.000000000 -0700
--- lisp/makefile.w32-in	2009-10-10 19:30:54.000000000 -0700
***************
*** 214,220 ****
  	@echo Directories: . $(WINS_UPDATES)
  	$(emacs) -l autoload \
  		--eval $(ARGQUOTE)(setq find-file-hook nil find-file-suppress-same-file-warnings t)$(ARGQUOTE) \
! 		-f w32-batch-update-autoloads "$(lisp)/loaddefs.el" . $(WINS_UPDATES)
  
  $(lisp)/subdirs.el:
  	$(MAKE) $(MFLAGS) update-subdirs
--- 214,220 ----
  	@echo Directories: . $(WINS_UPDATES)
  	$(emacs) -l autoload \
  		--eval $(ARGQUOTE)(setq find-file-hook nil find-file-suppress-same-file-warnings t)$(ARGQUOTE) \
! 		-f w32-batch-update-autoloads "$(lisp)/loaddefs.el" $(MAKE) . $(WINS_UPDATES)
  
  $(lisp)/subdirs.el:
  	$(MAKE) $(MFLAGS) update-subdirs
***************
*** 358,364 ****
  	   --eval "(setq find-file-suppress-same-file-warnings t)" \
  	   --eval "(setq make-backup-files nil)" \
  	   -f w32-batch-update-autoloads "$(lisp)/calendar/cal-loaddefs.el" \
! 	      ./calendar
  
  $(lisp)/calendar/diary-loaddefs.el:
  	"$(EMACS)" $(EMACSOPT) -l autoload \
--- 358,364 ----
  	   --eval "(setq find-file-suppress-same-file-warnings t)" \
  	   --eval "(setq make-backup-files nil)" \
  	   -f w32-batch-update-autoloads "$(lisp)/calendar/cal-loaddefs.el" \
! 	      $(MAKE) ./calendar
  
  $(lisp)/calendar/diary-loaddefs.el:
  	"$(EMACS)" $(EMACSOPT) -l autoload \
***************
*** 366,372 ****
  	   --eval "(setq find-file-suppress-same-file-warnings t)" \
  	   --eval "(setq make-backup-files nil)" \
  	   -f w32-batch-update-autoloads $(lisp)/calendar/diary-loaddefs.el \
! 	      ./calendar
  
  $(lisp)/calendar/hol-loaddefs.el:
  	"$(EMACS)" $(EMACSOPT) -l autoload \
--- 366,372 ----
  	   --eval "(setq find-file-suppress-same-file-warnings t)" \
  	   --eval "(setq make-backup-files nil)" \
  	   -f w32-batch-update-autoloads $(lisp)/calendar/diary-loaddefs.el \
! 	      $(MAKE) ./calendar
  
  $(lisp)/calendar/hol-loaddefs.el:
  	"$(EMACS)" $(EMACSOPT) -l autoload \
***************
*** 374,380 ****
  	   --eval "(setq find-file-suppress-same-file-warnings t)" \
  	   --eval "(setq make-backup-files nil)" \
  	   -f w32-batch-update-autoloads $(lisp)/calendar/hol-loaddefs.el \
! 	      ./calendar
  
  # Update MH-E internal autoloads. These are not to be confused with
  # the autoloads for the MH-E entry points, which are already in
--- 374,380 ----
  	   --eval "(setq find-file-suppress-same-file-warnings t)" \
  	   --eval "(setq make-backup-files nil)" \
  	   -f w32-batch-update-autoloads $(lisp)/calendar/hol-loaddefs.el \
! 	      $(MAKE) ./calendar
  
  # Update MH-E internal autoloads. These are not to be confused with
  # the autoloads for the MH-E entry points, which are already in
***************
*** 403,409 ****
  	   --eval $(ARGQUOTE)(setq find-file-suppress-same-file-warnings t)$(ARGQUOTE) \
  	   --eval $(ARGQUOTE)(setq make-backup-files nil)$(ARGQUOTE) \
  	   -f w32-batch-update-autoloads \
! 	   $(ARGQUOTE)$(lisp)/mh-e/mh-loaddefs.el$(ARGQUOTE) ./mh-e
  
  # Prepare a bootstrap in the lisp subdirectory.
  #
--- 403,409 ----
  	   --eval $(ARGQUOTE)(setq find-file-suppress-same-file-warnings t)$(ARGQUOTE) \
  	   --eval $(ARGQUOTE)(setq make-backup-files nil)$(ARGQUOTE) \
  	   -f w32-batch-update-autoloads \
! 	   $(ARGQUOTE)$(lisp)/mh-e/mh-loaddefs.el$(ARGQUOTE) $(MAKE) ./mh-e
  
  # Prepare a bootstrap in the lisp subdirectory.
  #




  reply	other threads:[~2009-10-11  2:36 UTC|newest]

Thread overview: 45+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <E1Mv3iq-0005oI-5L@monty-python.gnu.org>
2009-10-06  7:44 ` Changes in lisp/Makefile.in to skip preloaded files Eli Zaretskii
2009-10-06  9:25   ` Eli Zaretskii
2009-10-06  9:33     ` Miles Bader
2009-10-06  9:42       ` Eli Zaretskii
2009-10-06 10:14         ` Miles Bader
2009-10-06 13:12           ` Dan Nicolaescu
2009-10-06 13:45             ` Dan Nicolaescu
2009-10-06 16:20             ` Glenn Morris
2009-10-06 16:50               ` Dan Nicolaescu
2009-10-06 15:28     ` Stefan Monnier
2009-10-06 16:16     ` Glenn Morris
2009-10-06 18:41       ` Eli Zaretskii
2009-10-07  3:00         ` Glenn Morris
2009-10-07  7:23           ` Glenn Morris
2009-10-07  9:23             ` Eli Zaretskii
2009-10-07 10:00               ` Juanma Barranquero
2009-10-07 16:16               ` Glenn Morris
2009-10-08 23:08                 ` Lennart Borgman
2009-10-08 23:31                   ` Juanma Barranquero
2009-10-08 23:34                     ` Lennart Borgman
2009-10-09  0:02                       ` Juanma Barranquero
2009-10-09  0:04                         ` Glenn Morris
2009-10-09  0:25                           ` Juanma Barranquero
2009-10-09 11:48                             ` Lennart Borgman
2009-10-10  0:50                 ` ignoring autoloads in preloaded files on Windows [was Re: Changes in lisp/Makefile.in to skip preloaded files] Glenn Morris
2009-10-10  2:27                   ` Juanma Barranquero
2009-10-10  3:34                     ` ignoring autoloads in preloaded files on Windows Glenn Morris
2009-10-10  3:57                       ` Juanma Barranquero
2009-10-10  4:17                         ` Juanma Barranquero
2009-10-10  4:19                           ` Juanma Barranquero
2009-10-10  5:13                           ` Juanma Barranquero
2009-10-10  7:37                             ` Eli Zaretskii
2009-10-13 19:16                               ` Stefan Monnier
2009-10-15  6:14                                 ` Glenn Morris
2009-10-10  7:32                         ` Eli Zaretskii
2009-10-10 11:51                           ` Juanma Barranquero
2009-10-10 13:16                             ` Eli Zaretskii
2009-10-10 21:17                               ` Glenn Morris
2009-10-11  2:02                                 ` Juanma Barranquero
2009-10-11  2:36                                   ` Glenn Morris [this message]
2009-10-11  2:44                                     ` Glenn Morris
2009-10-11  3:35                                     ` Juanma Barranquero
2009-10-11 14:04                                       ` Juanma Barranquero
2009-10-07  9:57             ` Changes in lisp/Makefile.in to skip preloaded files Eli Zaretskii
2009-10-07  9:15           ` Eli Zaretskii

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

  List information: https://www.gnu.org/software/emacs/

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=24aazyzmf8.fsf@fencepost.gnu.org \
    --to=rgm@gnu.org \
    --cc=eliz@gnu.org \
    --cc=emacs-devel@gnu.org \
    --cc=lekktu@gmail.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).