# HG changeset patch # User Kenichi Handa # Date 1021551852 0 # Node ID 7e3cae9b0d8386bd2120d36b54042e0aff8f6e81 # Parent 91480a58ce450e87281b3e17ac60d97797cce4fb By sure to run emacs with LC_ALL=C. diff -r 91480a58ce45 -r 7e3cae9b0d83 lisp/Makefile.in --- a/lisp/Makefile.in Thu May 16 12:22:51 2002 +0000 +++ b/lisp/Makefile.in Thu May 16 12:24:12 2002 +0000 @@ -125,7 +125,7 @@ # The actual Emacs command run in the targets below. -emacs = EMACSLOADPATH=$(lisp) LANG=C $(EMACS) $(EMACSOPT) +emacs = EMACSLOADPATH=$(lisp) LC_ALL=C $(EMACS) $(EMACSOPT) # Common command to find subdirectories @@ -150,14 +150,14 @@ custom-deps: cus-load.el doit wd=$(lisp); $(setwins); \ echo Directories: $$wins; \ - LANG=C $(EMACS) $(EMACSOPT) -l cus-dep -f custom-make-dependencies $$wins + LC_ALL=C $(EMACS) $(EMACSOPT) -l cus-dep -f custom-make-dependencies $$wins finder-inf.el: echo "(provide 'finder-inf)" >> $@ finder-data: finder-inf.el doit wd=$(lisp); $(finder_setwins); \ echo Directories: $$wins; \ - LANG=C $(EMACS) $(EMACSOPT) -l finder -f finder-compile-keywords-make-dist $$wins + LC_ALL=C $(EMACS) $(EMACSOPT) -l finder -f finder-compile-keywords-make-dist $$wins loaddefs.el: echo ";;; loaddefs.el --- automatically extracted autoloads" >> $@ @@ -172,7 +172,7 @@ autoloads: loaddefs.el doit wd=$(lisp); $(setwins); \ echo Directories: $$wins; \ - LANG=C $(EMACS) $(EMACSOPT) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins + LC_ALL=C $(EMACS) $(EMACSOPT) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins subdirs.el: $(MAKE) $(MFLAGS) update-subdirs @@ -225,7 +225,7 @@ tr ' ' '\012\012' | sort | uniq -u`; \ for el in $(COMPILE_FIRST) $$els; do \ echo Compiling $$el; \ - LANG=C $(emacs) -f batch-byte-compile-if-not-done $$el || exit 1; \ + LC_ALL=C $(emacs) -f batch-byte-compile-if-not-done $$el || exit 1; \ done # Compile all Lisp files, except those from DONTCOMPILE. This @@ -239,13 +239,13 @@ tr ' ' '\012\012' | sort | uniq -u`; \ for el in $(COMPILE_FIRST) $$els; do \ echo Compiling $$el; \ - LANG=C $(emacs) -f batch-byte-compile $$el || exit 1; \ + LC_ALL=C $(emacs) -f batch-byte-compile $$el || exit 1; \ done compile-calc: for el in $(find $(lisp)/calc -name '*.el'); do \ echo Compiling $$el; \ - LANG=C $(emacs) -f batch-byte-compile $$el || exit 1; \ + LC_ALL=C $(emacs) -f batch-byte-compile $$el || exit 1; \ done # Backup compiled Lisp files in elc.tar.gz. If that file already @@ -264,7 +264,7 @@ # .elc is present. recompile: doit - LANG=C $(EMACS) $(EMACSOPT) -f batch-byte-recompile-directory $(lisp) + LC_ALL=C $(EMACS) $(EMACSOPT) -f batch-byte-recompile-directory $(lisp) # Prepare a bootstrap in the lisp subdirectory. Build loaddefs.el, # because it's not sure it's up-to-date, and if it's not, that might