diff options
| author | Andrea Corallo | 2020-10-02 13:49:20 +0200 |
|---|---|---|
| committer | Andrea Corallo | 2020-10-02 13:59:51 +0200 |
| commit | 8dacc9e8c52ce873f2b0a54e7ca67cffd2c7f4f7 (patch) | |
| tree | aedc87fb6ced653ce3d67344670c96181c822977 /src | |
| parent | 6a0994bc976534e56aa4990584f363536bc35271 (diff) | |
| download | emacs-8dacc9e8c52ce873f2b0a54e7ca67cffd2c7f4f7.tar.gz emacs-8dacc9e8c52ce873f2b0a54e7ca67cffd2c7f4f7.zip | |
* Fix 'incoherent dumped eln file' error when DUMP-METHOD=pbootstrap
* src/Makefile.in ($(bootstrap_pdmp)): Add missing --bin-dest
--eln-dest flags.
Diffstat (limited to 'src')
| -rw-r--r-- | src/Makefile.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/Makefile.in b/src/Makefile.in index 31a5a7e7709..001f0c40722 100644 --- a/src/Makefile.in +++ b/src/Makefile.in | |||
| @@ -820,7 +820,8 @@ endif | |||
| 820 | ifeq ($(DUMPING),pdumper) | 820 | ifeq ($(DUMPING),pdumper) |
| 821 | $(bootstrap_pdmp): bootstrap-emacs$(EXEEXT) | 821 | $(bootstrap_pdmp): bootstrap-emacs$(EXEEXT) |
| 822 | rm -f $@ | 822 | rm -f $@ |
| 823 | $(RUN_TEMACS) --batch $(BUILD_DETAILS) -l loadup --temacs=pbootstrap | 823 | $(RUN_TEMACS) --batch $(BUILD_DETAILS) -l loadup --temacs=pbootstrap \ |
| 824 | --bin-dest $(BIN_DESTDIR) --eln-dest $(ELN_DESTDIR) | ||
| 824 | @: Compile some files earlier to speed up further compilation. | 825 | @: Compile some files earlier to speed up further compilation. |
| 825 | $(MAKE) -C ../lisp compile-first EMACS="$(bootstrap_exe)" | 826 | $(MAKE) -C ../lisp compile-first EMACS="$(bootstrap_exe)" |
| 826 | endif | 827 | endif |