diff options
| -rw-r--r-- | lisp/Makefile.in | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lisp/Makefile.in b/lisp/Makefile.in index 5f724bfe2b5..1335e55932f 100644 --- a/lisp/Makefile.in +++ b/lisp/Makefile.in | |||
| @@ -125,7 +125,7 @@ COMPILE_FIRST = \ | |||
| 125 | 125 | ||
| 126 | # The actual Emacs command run in the targets below. | 126 | # The actual Emacs command run in the targets below. |
| 127 | 127 | ||
| 128 | emacs = EMACSLOADPATH=$(lisp) LC_ALL=C $(EMACS) $(EMACSOPT) | 128 | emacs = EMACSLOADPATH=$(lisp) LC_ALL=C LANG=C $(EMACS) $(EMACSOPT) |
| 129 | 129 | ||
| 130 | # Common command to find subdirectories | 130 | # Common command to find subdirectories |
| 131 | 131 | ||
| @@ -150,14 +150,14 @@ cus-load.el: | |||
| 150 | custom-deps: cus-load.el doit | 150 | custom-deps: cus-load.el doit |
| 151 | wd=$(lisp); $(setwins); \ | 151 | wd=$(lisp); $(setwins); \ |
| 152 | echo Directories: $$wins; \ | 152 | echo Directories: $$wins; \ |
| 153 | LC_ALL=C $(EMACS) $(EMACSOPT) -l cus-dep -f custom-make-dependencies $$wins | 153 | LC_ALL=C LANG=C $(EMACS) $(EMACSOPT) -l cus-dep -f custom-make-dependencies $$wins |
| 154 | 154 | ||
| 155 | finder-inf.el: | 155 | finder-inf.el: |
| 156 | echo "(provide 'finder-inf)" >> $@ | 156 | echo "(provide 'finder-inf)" >> $@ |
| 157 | finder-data: finder-inf.el doit | 157 | finder-data: finder-inf.el doit |
| 158 | wd=$(lisp); $(finder_setwins); \ | 158 | wd=$(lisp); $(finder_setwins); \ |
| 159 | echo Directories: $$wins; \ | 159 | echo Directories: $$wins; \ |
| 160 | LC_ALL=C $(EMACS) $(EMACSOPT) -l finder -f finder-compile-keywords-make-dist $$wins | 160 | LC_ALL=C LANG=C $(EMACS) $(EMACSOPT) -l finder -f finder-compile-keywords-make-dist $$wins |
| 161 | 161 | ||
| 162 | loaddefs.el: | 162 | loaddefs.el: |
| 163 | echo ";;; loaddefs.el --- automatically extracted autoloads" >> $@ | 163 | echo ";;; loaddefs.el --- automatically extracted autoloads" >> $@ |
| @@ -172,7 +172,7 @@ loaddefs.el: | |||
| 172 | autoloads: loaddefs.el doit | 172 | autoloads: loaddefs.el doit |
| 173 | wd=$(lisp); $(setwins); \ | 173 | wd=$(lisp); $(setwins); \ |
| 174 | echo Directories: $$wins; \ | 174 | echo Directories: $$wins; \ |
| 175 | LC_ALL=C $(EMACS) $(EMACSOPT) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins | 175 | LC_ALL=C LANG=C $(EMACS) $(EMACSOPT) -l autoload --eval '(setq generated-autoload-file "$(lisp)/loaddefs.el")' -f batch-update-autoloads $$wins |
| 176 | 176 | ||
| 177 | subdirs.el: | 177 | subdirs.el: |
| 178 | $(MAKE) $(MFLAGS) update-subdirs | 178 | $(MAKE) $(MFLAGS) update-subdirs |
| @@ -225,7 +225,7 @@ compile: subdirs.el doit | |||
| 225 | tr ' ' '\012\012' | sort | uniq -u`; \ | 225 | tr ' ' '\012\012' | sort | uniq -u`; \ |
| 226 | for el in $(COMPILE_FIRST) $$els; do \ | 226 | for el in $(COMPILE_FIRST) $$els; do \ |
| 227 | echo Compiling $$el; \ | 227 | echo Compiling $$el; \ |
| 228 | LC_ALL=C $(emacs) -f batch-byte-compile-if-not-done $$el || exit 1; \ | 228 | LC_ALL=C LANG=C $(emacs) -f batch-byte-compile-if-not-done $$el || exit 1; \ |
| 229 | done | 229 | done |
| 230 | 230 | ||
| 231 | # Compile all Lisp files, except those from DONTCOMPILE. This | 231 | # Compile all Lisp files, except those from DONTCOMPILE. This |
| @@ -239,13 +239,13 @@ compile-always: subdirs.el doit | |||
| 239 | tr ' ' '\012\012' | sort | uniq -u`; \ | 239 | tr ' ' '\012\012' | sort | uniq -u`; \ |
| 240 | for el in $(COMPILE_FIRST) $$els; do \ | 240 | for el in $(COMPILE_FIRST) $$els; do \ |
| 241 | echo Compiling $$el; \ | 241 | echo Compiling $$el; \ |
| 242 | LC_ALL=C $(emacs) -f batch-byte-compile $$el || exit 1; \ | 242 | LC_ALL=C LANG=C $(emacs) -f batch-byte-compile $$el || exit 1; \ |
| 243 | done | 243 | done |
| 244 | 244 | ||
| 245 | compile-calc: | 245 | compile-calc: |
| 246 | for el in $(find $(lisp)/calc -name '*.el'); do \ | 246 | for el in $(find $(lisp)/calc -name '*.el'); do \ |
| 247 | echo Compiling $$el; \ | 247 | echo Compiling $$el; \ |
| 248 | LC_ALL=C $(emacs) -f batch-byte-compile $$el || exit 1; \ | 248 | LC_ALL=C LANG=C $(emacs) -f batch-byte-compile $$el || exit 1; \ |
| 249 | done | 249 | done |
| 250 | 250 | ||
| 251 | # Backup compiled Lisp files in elc.tar.gz. If that file already | 251 | # Backup compiled Lisp files in elc.tar.gz. If that file already |
| @@ -264,7 +264,7 @@ compile-after-backup: backup-compiled-files compile-always | |||
| 264 | # .elc is present. | 264 | # .elc is present. |
| 265 | 265 | ||
| 266 | recompile: doit | 266 | recompile: doit |
| 267 | LC_ALL=C $(EMACS) $(EMACSOPT) -f batch-byte-recompile-directory $(lisp) | 267 | LC_ALL=C LANG=C $(EMACS) $(EMACSOPT) -f batch-byte-recompile-directory $(lisp) |
| 268 | 268 | ||
| 269 | # Prepare a bootstrap in the lisp subdirectory. Build loaddefs.el, | 269 | # Prepare a bootstrap in the lisp subdirectory. Build loaddefs.el, |
| 270 | # because it's not sure it's up-to-date, and if it's not, that might | 270 | # because it's not sure it's up-to-date, and if it's not, that might |